UNPKG

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