UNPKG

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