react-native-legal
Version:
Acknowledge OSS libraries used in your React Native app
12 lines (11 loc) • 575 B
TypeScript
import type { XcodeProject } from 'xcode';
/**
* Creates a Settings.bundle from a template and invokes a callback responsible for linking new file to the iOS project
*/
export declare function addSettingsBundleUtil(iosProjectPath: string, addResourceFileToGroup: ({ settingsBundleFilename }: {
settingsBundleFilename: string;
}) => void): void;
/**
* Creates a shell script build phase (if needed) and links it to native targets build phases
*/
export declare function registerLicensePlistBuildPhaseUtil(projectTargetId: string, pbxproj: XcodeProject): XcodeProject;