UNPKG

1.06 kBTypeScriptView Raw
1import { ExpoConfig } from '../Config.types';
2import { InfoPlist } from './IosConfig.types';
3export declare function getCustomInfoPlistEntries(config: ExpoConfig): {
4 [key: string]: any;
5};
6export declare function setCustomInfoPlistEntries(config: ExpoConfig, infoPlist: InfoPlist): {
7 CFBundleShortVersionString?: string | undefined;
8 CFBundleVersion?: string | undefined;
9 CFBundleDisplayName?: string | undefined;
10 CFBundleName?: string | undefined;
11 CFBundleURLTypes?: import("./IosConfig.types").URLScheme[] | undefined;
12 ITSAppUsesNonExemptEncryption?: boolean | undefined;
13 LSApplicationQueriesSchemes?: string[] | undefined;
14 FacebookAppID?: string | undefined;
15 FacebookDisplayName?: string | undefined;
16 FacebookAutoInitEnabled?: boolean | undefined;
17 FacebookAutoLogAppEventsEnabled?: boolean | undefined;
18 FacebookAdvertiserIDCollectionEnabled?: boolean | undefined;
19 UISupportedInterfaceOrientations?: import("./IosConfig.types").InterfaceOrientation[] | undefined;
20 GMSApiKey?: string | undefined;
21};