react-native-legal
Version:
Acknowledge OSS libraries used in your React Native app
24 lines (18 loc) • 1.03 kB
text/typescript
import path from 'path';
import { generateAboutLibrariesNPMOutput, scanDependencies } from '../../../plugin-utils/build/common';
import { addListActivity } from './addListActivity';
import { applyAndConfigureAboutLibrariesPlugin } from './applyAndConfigureAboutLibrariesPlugin';
import { declareAboutLibrariesPlugin } from './declareAboutLibrariesPlugin';
/**
* Implementation of bare plugin's Android/Android TV setup
*
* It scans the NPM dependencies, generates AboutLibraries-compatible metadata for them,
* installs & configures AboutLibraries Gradle plugin and adds Android Activity with a list of dependencies and their licenses
*/
export function androidCommand(androidProjectPath: string) {
const licenses = scanDependencies(path.join(path.resolve(androidProjectPath, '..'), 'package.json'));
generateAboutLibrariesNPMOutput(licenses, androidProjectPath);
declareAboutLibrariesPlugin(androidProjectPath);
applyAndConfigureAboutLibrariesPlugin(androidProjectPath);
addListActivity(androidProjectPath);
}