@expo/xdl
Version:
The Expo Development Library
11 lines (10 loc) • 521 B
TypeScript
import { AnyStandaloneContext } from './StandaloneContext';
/**
* Based on keys in the given context.config,
* ensure that the proper iOS icon images exist -- assuming Info.plist already
* points at them under CFBundleIcons.CFBundlePrimaryIcon.CFBundleIconFiles.
*
* This only works on MacOS (as far as I know) because it uses the sips utility.
*/
declare function createAndWriteIconsToPathAsync(context: AnyStandaloneContext, destinationIconPath: string): Promise<void>;
export { createAndWriteIconsToPathAsync };