UNPKG

39.9 kBSource Map (JSON)View Raw
1{"version":3,"file":"ExpoConfig.js","sourceRoot":"","sources":["../src/ExpoConfig.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB;;GAEG","sourcesContent":["/* tslint:disable */\n/**\n * The standard Expo config object defined in `app.config.js` files.\n */\n\nexport interface ExpoConfig {\n /**\n * The name of your app as it appears both within Expo Go and on your home screen as a standalone app.\n */\n name: string;\n /**\n * A short description of what your app is and why it is great.\n */\n description?: string;\n /**\n * The friendly URL name for publishing. For example, `myAppName` will refer to the `expo.dev/@project-owner/myAppName` project.\n */\n slug: string;\n /**\n * The Expo account name of the team owner, only applicable if you are enrolled in the EAS Priority Plan. If not provided, defaults to the username of the current user.\n */\n owner?: string;\n /**\n * The auto generated Expo account name and slug used for display purposes. Formatted like `@username/slug`. When unauthenticated, the username is `@anonymous`. For published projects, this value may change when a project is transferred between accounts or renamed.\n */\n currentFullName?: string;\n /**\n * The auto generated Expo account name and slug used for services like Notifications and AuthSession proxy. Formatted like `@username/slug`. When unauthenticated, the username is `@anonymous`. For published projects, this value will not change when a project is transferred between accounts or renamed.\n */\n originalFullName?: string;\n /**\n * Defaults to `unlisted`. `unlisted` hides the project from search results. `hidden` restricts access to the project page to only the owner and other users that have been granted access. Valid values: `public`, `unlisted`, `hidden`.\n */\n privacy?: 'public' | 'unlisted' | 'hidden';\n /**\n * The Expo sdkVersion to run the project on. This should line up with the version specified in your package.json.\n */\n sdkVersion?: string;\n /**\n * **Note: Don't use this property unless you are sure what you're doing**\n *\n * The runtime version associated with this manifest.\n * Set this to `{\"policy\": \"nativeVersion\"}` to generate it automatically.\n */\n runtimeVersion?:\n | string\n | {\n policy: 'nativeVersion' | 'sdkVersion';\n };\n /**\n * Your app version. In addition to this field, you'll also use `ios.buildNumber` and `android.versionCode` — read more about how to version your app [here](https://docs.expo.dev/distribution/app-stores/#versioning-your-app). On iOS this corresponds to `CFBundleShortVersionString`, and on Android, this corresponds to `versionName`. The required format can be found [here](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring).\n */\n version?: string;\n /**\n * Platforms that your project explicitly supports. If not specified, it defaults to `[\"ios\", \"android\"]`.\n */\n platforms?: ('android' | 'ios' | 'web')[];\n /**\n * If you would like to share the source code of your app on Github, enter the URL for the repository here and it will be linked to from your Expo project page.\n */\n githubUrl?: string;\n /**\n * Locks your app to a specific orientation with portrait or landscape. Defaults to no lock. Valid values: `default`, `portrait`, `landscape`\n */\n orientation?: 'default' | 'portrait' | 'landscape';\n /**\n * Configuration to force the app to always use the light or dark user-interface appearance, such as \"dark mode\", or make it automatically adapt to the system preferences. If not provided, defaults to `light`.\n */\n userInterfaceStyle?: 'light' | 'dark' | 'automatic';\n /**\n * The background color for your app, behind any of your React views. This is also known as the root view background color.\n */\n backgroundColor?: string;\n /**\n * On Android, this will determine the color of your app in the multitasker. Currently this is not used on iOS, but it may be used for other purposes in the future.\n */\n primaryColor?: string;\n /**\n * Local path or remote URL to an image to use for your app's icon. We recommend that you use a 1024x1024 png file. This icon will appear on the home screen and within the Expo app.\n */\n icon?: string;\n /**\n * Configuration for remote (push) notifications.\n */\n notification?: {\n /**\n * (Android only) Local path or remote URL to an image to use as the icon for push notifications. 96x96 png grayscale with transparency. We recommend following [Google's design guidelines](https://material.io/design/iconography/product-icons.html#design-principles). If not provided, defaults to your app icon.\n */\n icon?: string;\n /**\n * (Android only) Tint color for the push notification image when it appears in the notification tray. Defaults to `#ffffff`\n */\n color?: string;\n /**\n * Whether or not to display notifications when the app is in the foreground on iOS. `_displayInForeground` option in the individual push notification message overrides this option. [Learn more.](https://docs.expo.dev/push-notifications/receiving-notifications/#foreground-notification-behavior) Defaults to `false`.\n */\n iosDisplayInForeground?: boolean;\n /**\n * Show each push notification individually (`default`) or collapse into one (`collapse`).\n */\n androidMode?: 'default' | 'collapse';\n /**\n * If `androidMode` is set to `collapse`, this title is used for the collapsed notification message. For example, `'#{unread_notifications} new interactions'`.\n */\n androidCollapsedTitle?: string;\n };\n /**\n * By default, Expo looks for the application registered with the AppRegistry as `main`. If you would like to change this, you can specify the name in this property.\n */\n appKey?: string;\n /**\n * Configuration for the status bar on Android. For more details please navigate to [Configuring StatusBar](https://docs.expo.dev/guides/configuring-statusbar/).\n */\n androidStatusBar?: {\n /**\n * Configures the status bar icons to have a light or dark color. Valid values: `light-content`, `dark-content`. Defaults to `dark-content`\n */\n barStyle?: 'light-content' | 'dark-content';\n /**\n * Specifies the background color of the status bar. Defaults to `#00000000` (transparent) for `dark-content` bar style and `#00000088` (semi-transparent black) for `light-content` bar style\n */\n backgroundColor?: string;\n /**\n * Instructs the system whether the status bar should be visible or not. Defaults to `false`\n */\n hidden?: boolean;\n /**\n * Sets `android:windowTranslucentStatus` in `styles.xml`. When false, the system status bar pushes the content of your app down (similar to `position: relative`). When true, the status bar floats above the content in your app (similar to `position: absolute`). Defaults to `true` to match the iOS status bar behavior (which can only float above content).\n */\n translucent?: boolean;\n };\n /**\n * Configuration for the bottom navigation bar on Android.\n */\n androidNavigationBar?: {\n /**\n * Determines how and when the navigation bar is shown. [Learn more](https://developer.android.com/training/system-ui/immersive). Valid values: `leanback`, `immersive`, `sticky-immersive`\n *\n * `leanback` results in the navigation bar being hidden until the first touch gesture is registered.\n *\n * `immersive` results in the navigation bar being hidden until the user swipes up from the edge where the navigation bar is hidden.\n *\n * `sticky-immersive` is identical to `'immersive'` except that the navigation bar will be semi-transparent and will be hidden again after a short period of time\n */\n visible?: 'leanback' | 'immersive' | 'sticky-immersive';\n /**\n * Configure the navigation bar icons to have a light or dark color. Supported on Android Oreo and newer. Valid values: `'light-content'`, `'dark-content'`\n */\n barStyle?: 'light-content' | 'dark-content';\n /**\n * Specifies the background color of the navigation bar.\n */\n backgroundColor?: string;\n };\n /**\n * Settings that apply specifically to running this app in a development client\n */\n developmentClient?: {\n /**\n * If true, the app will launch in a development client with no additional dialogs or progress indicators, just like in a standalone app.\n */\n silentLaunch?: boolean;\n };\n /**\n * **Standalone Apps Only**. URL scheme to link into your app. For example, if we set this to `'demo'`, then demo:// URLs would open your app when tapped.\n */\n scheme?: string;\n /**\n * The relative path to your main JavaScript file.\n */\n entryPoint?: string;\n /**\n * Any extra fields you want to pass to your experience. Values are accessible via `Expo.Constants.manifest.extra` ([Learn more](https://docs.expo.dev/versions/latest/sdk/constants/#constantsmanifest))\n */\n extra?: {\n [k: string]: any;\n };\n /**\n * @deprecated Use a `metro.config.js` file instead. [Learn more](https://docs.expo.dev/guides/customizing-metro/)\n */\n packagerOpts?: {\n [k: string]: any;\n };\n /**\n * Configuration for how and when the app should request OTA JavaScript updates\n */\n updates?: {\n /**\n * If set to false, your standalone app will never download any code, and will only use code bundled locally on the device. In that case, all updates to your app must be submitted through app store review. Defaults to true. (Note: This will not work out of the box with ExpoKit projects)\n */\n enabled?: boolean;\n /**\n * By default, Expo will check for updates every time the app is loaded. Set this to `ON_ERROR_RECOVERY` to disable automatic checking unless recovering from an error. Must be one of `ON_LOAD` or `ON_ERROR_RECOVERY`\n */\n checkAutomatically?: 'ON_ERROR_RECOVERY' | 'ON_LOAD';\n /**\n * How long (in ms) to allow for fetching OTA updates before falling back to a cached version of the app. Defaults to 0. Must be between 0 and 300000 (5 minutes).\n */\n fallbackToCacheTimeout?: number;\n /**\n * URL from which expo-updates will fetch update manifests\n */\n url?: string;\n };\n /**\n * Provide overrides by locale for System Dialog prompts like Permissions Boxes\n */\n locales?: {\n [k: string]:\n | string\n | {\n [k: string]: any;\n };\n };\n /**\n * Used for all Facebook libraries. Set up your Facebook App ID at https://developers.facebook.com.\n */\n facebookAppId?: string;\n /**\n * Whether the Facebook SDK should be initialized automatically. The default in Expo (Client and in standalone apps) is `false`.\n */\n facebookAutoInitEnabled?: boolean;\n /**\n * Whether the Facebook SDK log app events automatically. If you don't set this property, Facebook's default will be used. (Applicable only to standalone apps.) Note: The Facebook SDK must be initialized for app events to work. You may autoinitialize Facebook SDK by setting `facebookAutoInitEnabled` to `true`\n */\n facebookAutoLogAppEventsEnabled?: boolean;\n /**\n * Whether the Facebook SDK should collect advertiser ID properties, like the Apple IDFA and Android Advertising ID, automatically. If you don't set this property, Facebook's default policy will be used. (Applicable only to standalone apps.)\n */\n facebookAdvertiserIDCollectionEnabled?: boolean;\n /**\n * Used for native Facebook login.\n */\n facebookDisplayName?: string;\n /**\n * Used for Facebook native login. Starts with 'fb' and followed by a string of digits, like 'fb1234567890'. You can find your scheme [here](https://developers.facebook.com/docs/facebook-login/ios)in the 'Configuring Your info.plist' section (only applicable to standalone apps and custom Expo Go apps).\n */\n facebookScheme?: string;\n /**\n * Is app detached\n */\n isDetached?: boolean;\n /**\n * Extra fields needed by detached apps\n */\n detach?: {\n [k: string]: any;\n };\n /**\n * An array of file glob strings which point to assets that will be bundled within your standalone app binary. Read more in the [Offline Support guide](https://docs.expo.dev/guides/offline-support/)\n */\n assetBundlePatterns?: string[];\n /**\n * Config plugins for adding extra functionality to your project. [Learn more](https://docs.expo.dev/guides/config-plugins/).\n */\n plugins?: (string | [] | [string] | [string, any])[];\n splash?: Splash;\n /**\n * Specifies the JavaScript engine for apps. Supported only on EAS Build. Defaults to `jsc`. Valid values: `hermes`, `jsc`.\n */\n jsEngine?: 'hermes' | 'jsc';\n ios?: IOS;\n android?: Android;\n web?: Web;\n /**\n * Configuration for scripts to run to hook into the publish process\n */\n hooks?: {\n postPublish?: PublishHook[];\n postExport?: PublishHook[];\n };\n /**\n * Enable experimental features that may be unstable, unsupported, or removed without deprecation notices.\n */\n experiments?: {\n /**\n * Enables Turbo Modules, which are a type of native modules that use a different way of communicating between JS and platform code. When installing a Turbo Module you will need to enable this experimental option (the library still needs to be a part of Expo SDK already, like react-native-reanimated v2). Turbo Modules do not support remote debugging and enabling this option will disable remote debugging.\n */\n turboModules?: boolean;\n };\n /**\n * Internal properties for developer tools\n */\n _internal?: {\n /**\n * List of plugins already run on the config\n */\n pluginHistory?: {\n [k: string]: any;\n };\n [k: string]: any;\n };\n}\n/**\n * Configuration for loading and splash screen for standalone apps.\n */\nexport interface Splash {\n /**\n * Color to fill the loading screen background\n */\n backgroundColor?: string;\n /**\n * Determines how the `image` will be displayed in the splash loading screen. Must be one of `cover` or `contain`, defaults to `contain`.\n */\n resizeMode?: 'cover' | 'contain';\n /**\n * Local path or remote URL to an image to fill the background of the loading screen. Image size and aspect ratio are up to you. Must be a .png.\n */\n image?: string;\n [k: string]: any;\n}\n/**\n * Configuration that is specific to the iOS platform.\n */\nexport interface IOS {\n /**\n * The manifest for the iOS version of your app will be written to this path during publish.\n */\n publishManifestPath?: string;\n /**\n * The bundle for the iOS version of your app will be written to this path during publish.\n */\n publishBundlePath?: string;\n /**\n * The bundle identifier for your iOS standalone app. You make it up, but it needs to be unique on the App Store. See [this StackOverflow question](http://stackoverflow.com/questions/11347470/what-does-bundle-identifier-mean-in-the-ios-project).\n */\n bundleIdentifier?: string;\n /**\n * Build number for your iOS standalone app. Corresponds to `CFBundleVersion` and must match Apple's [specified format](https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102364). (Note: Transporter will pull the value for `Version Number` from `expo.version` and NOT from `expo.ios.buildNumber`.)\n */\n buildNumber?: string;\n /**\n * The background color for your iOS app, behind any of your React views. Overrides the top-level `backgroundColor` key if it is present.\n */\n backgroundColor?: string;\n /**\n * Local path or remote URL to an image to use for your app's icon on iOS. If specified, this overrides the top-level `icon` key. Use a 1024x1024 icon which follows Apple's interface guidelines for icons, including color profile and transparency.\n *\n * Expo will generate the other required sizes. This icon will appear on the home screen and within the Expo app.\n */\n icon?: string;\n /**\n * @deprecated Merchant ID for use with Apple Pay in your standalone app.\n */\n merchantId?: string;\n /**\n * URL to your app on the Apple App Store, if you have deployed it there. This is used to link to your store page from your Expo project page if your app is public.\n */\n appStoreUrl?: string;\n /**\n * Enable iOS Bitcode optimizations in the native build. Accepts the name of an iOS build configuration to enable for a single configuration and disable for all others, e.g. Debug, Release. Not available in the classic 'expo build:ios' or Expo Go. Defaults to `undefined` which uses the template's predefined settings.\n */\n bitcode?: boolean | string;\n /**\n * Note: This property key is not included in the production manifest and will evaluate to `undefined`. It is used internally only in the build process, because it contains API keys that some may want to keep private.\n */\n config?: {\n /**\n * [Branch](https://branch.io/) key to hook up Branch linking services.\n */\n branch?: {\n /**\n * Your Branch API key\n */\n apiKey?: string;\n };\n /**\n * Sets `ITSAppUsesNonExemptEncryption` in the standalone ipa's Info.plist to the given boolean value.\n */\n usesNonExemptEncryption?: boolean;\n /**\n * [Google Maps iOS SDK](https://developers.google.com/maps/documentation/ios-sdk/start) key for your standalone app.\n */\n googleMapsApiKey?: string;\n /**\n * [Google Mobile Ads App ID](https://support.google.com/admob/answer/6232340) Google AdMob App ID.\n */\n googleMobileAdsAppId?: string;\n /**\n * A boolean indicating whether to initialize Google App Measurement and begin sending user-level event data to Google immediately when the app starts. The default in Expo (Go and in standalone apps) is `false`. [Sets the opposite of the given value to the following key in `Info.plist`.](https://developers.google.com/admob/ios/eu-consent#delay_app_measurement_optional)\n */\n googleMobileAdsAutoInit?: boolean;\n /**\n * [Google Sign-In iOS SDK](https://developers.google.com/identity/sign-in/ios/start-integrating) keys for your standalone app.\n */\n googleSignIn?: {\n /**\n * The reserved client ID URL scheme. Can be found in `GoogleService-Info.plist`.\n */\n reservedClientId?: string;\n };\n };\n /**\n * [Firebase Configuration File](https://support.google.com/firebase/answer/7015592) Location of the `GoogleService-Info.plist` file for configuring Firebase.\n */\n googleServicesFile?: string;\n /**\n * Whether your standalone iOS app supports tablet screen sizes. Defaults to `false`.\n */\n supportsTablet?: boolean;\n /**\n * If true, indicates that your standalone iOS app does not support handsets, and only supports tablets.\n */\n isTabletOnly?: boolean;\n /**\n * If true, indicates that your standalone iOS app does not support Slide Over and Split View on iPad. Defaults to `false`\n */\n requireFullScreen?: boolean;\n /**\n * Configuration to force the app to always use the light or dark user-interface appearance, such as \"dark mode\", or make it automatically adapt to the system preferences. If not provided, defaults to `light`.\n */\n userInterfaceStyle?: 'light' | 'dark' | 'automatic';\n /**\n * Dictionary of arbitrary configuration to add to your standalone app's native Info.plist. Applied prior to all other Expo-specific configuration. No other validation is performed, so use this at your own risk of rejection from the App Store.\n */\n infoPlist?: {\n [k: string]: any;\n };\n /**\n * Dictionary of arbitrary configuration to add to your standalone app's native *.entitlements (plist). Applied prior to all other Expo-specific configuration. No other validation is performed, so use this at your own risk of rejection from the App Store.\n */\n entitlements?: {\n [k: string]: any;\n };\n /**\n * An array that contains Associated Domains for the standalone app. [Learn more](https://developer.apple.com/documentation/safariservices/supporting_associated_domains).\n */\n associatedDomains?: string[];\n /**\n * A boolean indicating if the app uses iCloud Storage for `DocumentPicker`. See `DocumentPicker` docs for details.\n */\n usesIcloudStorage?: boolean;\n /**\n * A boolean indicating if the app uses Apple Sign-In. See `AppleAuthentication` docs for details.\n */\n usesAppleSignIn?: boolean;\n /**\n * A Boolean value that indicates whether the app may access the notes stored in contacts. You must [receive permission from Apple](https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_contacts_notes) before you can submit your app for review with this capability.\n */\n accessesContactNotes?: boolean;\n /**\n * Configuration for loading and splash screen for standalone iOS apps.\n */\n splash?: {\n /**\n * @deprecated Apple has deprecated `.xib` splash screens in favor of `.storyboard` files. Local path to a XIB file as the loading screen. It overrides other loading screen options. Note: This will only be used in the standalone app (i.e., after you build the app). It will not be used in the Expo Go.\n */\n xib?: string;\n /**\n * Color to fill the loading screen background\n */\n backgroundColor?: string;\n /**\n * Determines how the `image` will be displayed in the splash loading screen. Must be one of `cover` or `contain`, defaults to `contain`.\n */\n resizeMode?: 'cover' | 'contain';\n /**\n * Local path or remote URL to an image to fill the background of the loading screen. Image size and aspect ratio are up to you. Must be a .png.\n */\n image?: string;\n /**\n * Local path or remote URL to an image to fill the background of the loading screen. Image size and aspect ratio are up to you. Must be a .png.\n */\n tabletImage?: string;\n [k: string]: any;\n };\n /**\n * Specifies the JavaScript engine for iOS apps. Supported only on EAS Build. Defaults to `jsc`. Valid values: `hermes`, `jsc`.\n */\n jsEngine?: 'hermes' | 'jsc';\n /**\n * **Note: Don't use this property unless you are sure what you're doing**\n *\n * The runtime version associated with this manifest for the iOS platform. If provided, this will override the top level runtimeVersion key.\n * Set this to `{\"policy\": \"nativeVersion\"}` to generate it automatically.\n */\n runtimeVersion?:\n | string\n | {\n policy: 'nativeVersion' | 'sdkVersion';\n };\n}\n/**\n * Configuration that is specific to the Android platform.\n */\nexport interface Android {\n /**\n * The manifest for the Android version of your app will be written to this path during publish.\n */\n publishManifestPath?: string;\n /**\n * The bundle for the Android version of your app will be written to this path during publish.\n */\n publishBundlePath?: string;\n /**\n * The package name for your Android standalone app. You make it up, but it needs to be unique on the Play Store. See [this StackOverflow question](http://stackoverflow.com/questions/6273892/android-package-name-convention).\n */\n package?: string;\n /**\n * Version number required by Google Play. Increment by one for each release. Must be a positive integer. [Learn more](https://developer.android.com/studio/publish/versioning.html)\n */\n versionCode?: number;\n /**\n * The background color for your Android app, behind any of your React views. Overrides the top-level `backgroundColor` key if it is present.\n */\n backgroundColor?: string;\n /**\n * Configuration to force the app to always use the light or dark user-interface appearance, such as \"dark mode\", or make it automatically adapt to the system preferences. If not provided, defaults to `light`.\n */\n userInterfaceStyle?: 'light' | 'dark' | 'automatic';\n /**\n * @deprecated A Boolean value that indicates whether the app should use the new notifications API.\n */\n useNextNotificationsApi?: boolean;\n /**\n * Local path or remote URL to an image to use for your app's icon on Android. If specified, this overrides the top-level `icon` key. We recommend that you use a 1024x1024 png file (transparency is recommended for the Google Play Store). This icon will appear on the home screen and within the Expo app.\n */\n icon?: string;\n /**\n * Settings for an Adaptive Launcher Icon on Android. [Learn more](https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive)\n */\n adaptiveIcon?: {\n /**\n * Local path or remote URL to an image to use for your app's icon on Android. If specified, this overrides the top-level `icon` and the `android.icon` keys. Should follow the [specified guidelines](https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive). This icon will appear on the home screen.\n */\n foregroundImage?: string;\n /**\n * Local path or remote URL to a background image for your app's Adaptive Icon on Android. If specified, this overrides the `backgroundColor` key. Must have the same dimensions as foregroundImage`, and has no effect if `foregroundImage` is not specified. Should follow the [specified guidelines](https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive).\n */\n backgroundImage?: string;\n /**\n * Color to use as the background for your app's Adaptive Icon on Android. Defaults to white, `#FFFFFF`. Has no effect if `foregroundImage` is not specified.\n */\n backgroundColor?: string;\n };\n /**\n * URL to your app on the Google Play Store, if you have deployed it there. This is used to link to your store page from your Expo project page if your app is public.\n */\n playStoreUrl?: string;\n /**\n * List of permissions used by the standalone app.\n *\n * To use ONLY the following minimum necessary permissions and none of the extras supported by Expo in a default managed app, set `permissions` to `[]`. The minimum necessary permissions do not require a Privacy Policy when uploading to Google Play Store and are:\n * • receive data from Internet\n * • view network connections\n * • full network access\n * • change your audio settings\n * • prevent device from sleeping\n *\n * To use ALL permissions supported by Expo by default, do not specify the `permissions` key.\n *\n * To use the minimum necessary permissions ALONG with certain additional permissions, specify those extras in `permissions`, e.g.\n *\n * `[ \"CAMERA\", \"ACCESS_FINE_LOCATION\" ]`.\n *\n * You can specify the following permissions depending on what you need:\n *\n * - `ACCESS_COARSE_LOCATION`\n * - `ACCESS_FINE_LOCATION`\n * - `ACCESS_BACKGROUND_LOCATION`\n * - `CAMERA`\n * - `RECORD_AUDIO`\n * - `READ_CONTACTS`\n * - `WRITE_CONTACTS`\n * - `READ_CALENDAR`\n * - `WRITE_CALENDAR`\n * - `READ_EXTERNAL_STORAGE`\n * - `WRITE_EXTERNAL_STORAGE`\n * - `USE_FINGERPRINT`\n * - `USE_BIOMETRIC`\n * - `WRITE_SETTINGS`\n * - `VIBRATE`\n * - `READ_PHONE_STATE`\n * - `com.anddoes.launcher.permission.UPDATE_COUNT`\n * - `com.android.launcher.permission.INSTALL_SHORTCUT`\n * - `com.google.android.c2dm.permission.RECEIVE`\n * - `com.google.android.gms.permission.ACTIVITY_RECOGNITION`\n * - `com.google.android.providers.gsf.permission.READ_GSERVICES`\n * - `com.htc.launcher.permission.READ_SETTINGS`\n * - `com.htc.launcher.permission.UPDATE_SHORTCUT`\n * - `com.majeur.launcher.permission.UPDATE_BADGE`\n * - `com.sec.android.provider.badge.permission.READ`\n * - `com.sec.android.provider.badge.permission.WRITE`\n * - `com.sonyericsson.home.permission.BROADCAST_BADGE`\n *\n */\n permissions?: string[];\n /**\n * [Firebase Configuration File](https://support.google.com/firebase/answer/7015592) Location of the `GoogleService-Info.plist` file for configuring Firebase. Including this key automatically enables FCM in your standalone app.\n */\n googleServicesFile?: string;\n /**\n * Note: This property key is not included in the production manifest and will evaluate to `undefined`. It is used internally only in the build process, because it contains API keys that some may want to keep private.\n */\n config?: {\n /**\n * [Branch](https://branch.io/) key to hook up Branch linking services.\n */\n branch?: {\n /**\n * Your Branch API key\n */\n apiKey?: string;\n };\n /**\n * [Google Maps Android SDK](https://developers.google.com/maps/documentation/android-api/signup) configuration for your standalone app.\n */\n googleMaps?: {\n /**\n * Your Google Maps Android SDK API key\n */\n apiKey?: string;\n };\n /**\n * [Google Mobile Ads App ID](https://support.google.com/admob/answer/6232340) Google AdMob App ID.\n */\n googleMobileAdsAppId?: string;\n /**\n * A boolean indicating whether to initialize Google App Measurement and begin sending user-level event data to Google immediately when the app starts. The default in Expo (Client and in standalone apps) is `false`. [Sets the opposite of the given value to the following key in `Info.plist`](https://developers.google.com/admob/ios/eu-consent#delay_app_measurement_optional)\n */\n googleMobileAdsAutoInit?: boolean;\n /**\n * @deprecated Use `googleServicesFile` instead. [Google Sign-In Android SDK](https://developers.google.com/identity/sign-in/android/start-integrating) keys for your standalone app.\n */\n googleSignIn?: {\n /**\n * The Android API key. Can be found in the credentials section of the developer console or in `google-services.json`.\n */\n apiKey?: string;\n /**\n * The SHA-1 hash of the signing certificate used to build the APK without any separator (`:`). Can be found in `google-services.json`. https://developers.google.com/android/guides/client-auth\n */\n certificateHash?: string;\n };\n };\n /**\n * Configuration for loading and splash screen for managed and standalone Android apps.\n */\n splash?: {\n /**\n * Color to fill the loading screen background\n */\n backgroundColor?: string;\n /**\n * Determines how the `image` will be displayed in the splash loading screen. Must be one of `cover`, `contain` or `native`, defaults to `contain`.\n */\n resizeMode?: 'cover' | 'contain' | 'native';\n /**\n * Local path or remote URL to an image to fill the background of the loading screen. Image size and aspect ratio are up to you. Must be a .png.\n */\n image?: string;\n /**\n * Local path or remote URL to an image to fill the background of the loading screen in \"native\" mode. Image size and aspect ratio are up to you. [Learn more]( https://developer.android.com/training/multiscreen/screendensities)\n *\n * `Natural sized image (baseline)`\n */\n mdpi?: string;\n /**\n * Local path or remote URL to an image to fill the background of the loading screen in \"native\" mode. Image size and aspect ratio are up to you. [Learn more]( https://developer.android.com/training/multiscreen/screendensities)\n *\n * `Scale 1.5x`\n */\n hdpi?: string;\n /**\n * Local path or remote URL to an image to fill the background of the loading screen in \"native\" mode. Image size and aspect ratio are up to you. [Learn more]( https://developer.android.com/training/multiscreen/screendensities)\n *\n * `Scale 2x`\n */\n xhdpi?: string;\n /**\n * Local path or remote URL to an image to fill the background of the loading screen in \"native\" mode. Image size and aspect ratio are up to you. [Learn more]( https://developer.android.com/training/multiscreen/screendensities)\n *\n * `Scale 3x`\n */\n xxhdpi?: string;\n /**\n * Local path or remote URL to an image to fill the background of the loading screen in \"native\" mode. Image size and aspect ratio are up to you. [Learn more]( https://developer.android.com/training/multiscreen/screendensities)\n *\n * `Scale 4x`\n */\n xxxhdpi?: string;\n [k: string]: any;\n };\n /**\n * Configuration for setting an array of custom intent filters in Android manifest. [Learn more](https://developer.android.com/guide/components/intents-filters)\n */\n intentFilters?: {\n /**\n * You may also use an intent filter to set your app as the default handler for links (without showing the user a dialog with options). To do so use `true` and then configure your server to serve a JSON file verifying that you own the domain. [Learn more](developer.android.com/training/app-links)\n */\n autoVerify?: boolean;\n action: string;\n data?: AndroidIntentFiltersData | AndroidIntentFiltersData[];\n category?: string | string[];\n }[];\n /**\n * Allows your user's app data to be automatically backed up to their Google Drive. If this is set to false, no backup or restore of the application will ever be performed (this is useful if your app deals with sensitive information). Defaults to the Android default, which is `true`.\n */\n allowBackup?: boolean;\n /**\n * Determines how the software keyboard will impact the layout of your application. This maps to the `android:windowSoftInputMode` property. Defaults to `resize`. Valid values: `resize`, `pan`.\n */\n softwareKeyboardLayoutMode?: 'resize' | 'pan';\n /**\n * Specifies the JavaScript engine for Android apps. Supported only on EAS Build and in Expo Go. Defaults to `jsc`. Valid values: `hermes`, `jsc`.\n */\n jsEngine?: 'hermes' | 'jsc';\n /**\n * **Note: Don't use this property unless you are sure what you're doing**\n *\n * The runtime version associated with this manifest for the Android platform. If provided, this will override the top level runtimeVersion key.\n * Set this to `{\"policy\": \"nativeVersion\"}` to generate it automatically.\n */\n runtimeVersion?:\n | string\n | {\n policy: 'nativeVersion' | 'sdkVersion';\n };\n}\nexport interface AndroidIntentFiltersData {\n /**\n * Scheme of the URL, e.g. `https`\n */\n scheme?: string;\n /**\n * Hostname, e.g. `myapp.io`\n */\n host?: string;\n /**\n * Port, e.g. `3000`\n */\n port?: string;\n /**\n * Exact path for URLs that should be matched by the filter, e.g. `/records`\n */\n path?: string;\n /**\n * Pattern for paths that should be matched by the filter, e.g. `.*`. Must begin with `/`\n */\n pathPattern?: string;\n /**\n * Prefix for paths that should be matched by the filter, e.g. `/records/` will match `/records/123`\n */\n pathPrefix?: string;\n /**\n * MIME type for URLs that should be matched by the filter\n */\n mimeType?: string;\n}\n/**\n * Configuration that is specific to the web platform.\n */\nexport interface Web {\n /**\n * Relative path of an image to use for your app's favicon.\n */\n favicon?: string;\n /**\n * Defines the title of the document, defaults to the outer level name\n */\n name?: string;\n /**\n * A short version of the app's name, 12 characters or fewer. Used in app launcher and new tab pages. Maps to `short_name` in the PWA manifest.json. Defaults to the `name` property.\n */\n shortName?: string;\n /**\n * Specifies the primary language for the values in the name and short_name members. This value is a string containing a single language tag.\n */\n lang?: string;\n /**\n * Defines the navigation scope of this website's context. This restricts what web pages can be viewed while the manifest is applied. If the user navigates outside the scope, it returns to a normal web page inside a browser tab/window. If the scope is a relative URL, the base URL will be the URL of the manifest.\n */\n scope?: string;\n /**\n * Defines the color of the Android tool bar, and may be reflected in the app's preview in task switchers.\n */\n themeColor?: string;\n /**\n * Provides a general description of what the pinned website does.\n */\n description?: string;\n /**\n * Specifies the primary text direction for the name, short_name, and description members. Together with the lang member, it helps the correct display of right-to-left languages.\n */\n dir?: 'auto' | 'ltr' | 'rtl';\n /**\n * Defines the developers’ preferred display mode for the website.\n */\n display?: 'fullscreen' | 'standalone' | 'minimal-ui' | 'browser';\n /**\n * The URL that loads when a user launches the application (e.g., when added to home screen), typically the index. Note: This has to be a relative URL, relative to the manifest URL.\n */\n startUrl?: string;\n /**\n * Defines the default orientation for all the website's top level browsing contexts.\n */\n orientation?:\n | 'any'\n | 'natural'\n | 'landscape'\n | 'landscape-primary'\n | 'landscape-secondary'\n | 'portrait'\n | 'portrait-primary'\n | 'portrait-secondary';\n /**\n * Defines the expected “background color” for the website. This value repeats what is already available in the site’s CSS, but can be used by browsers to draw the background color of a shortcut when the manifest is available before the stylesheet has loaded. This creates a smooth transition between launching the web application and loading the site's content.\n */\n backgroundColor?: string;\n /**\n * If content is set to default, the status bar appears normal. If set to black, the status bar has a black background. If set to black-translucent, the status bar is black and translucent. If set to default or black, the web content is displayed below the status bar. If set to black-translucent, the web content is displayed on the entire screen, partially obscured by the status bar.\n */\n barStyle?: 'default' | 'black' | 'black-translucent';\n /**\n * Hints for the user agent to indicate to the user that the specified native applications (defined in expo.ios and expo.android) are recommended over the website.\n */\n preferRelatedApplications?: boolean;\n /**\n * Experimental features. These will break without deprecation notice.\n */\n dangerous?: {\n [k: string]: any;\n };\n /**\n * Configuration for PWA splash screens.\n */\n splash?: {\n /**\n * Color to fill the loading screen background\n */\n backgroundColor?: string;\n /**\n * Determines how the `image` will be displayed in the splash loading screen. Must be one of `cover` or `contain`, defaults to `contain`.\n */\n resizeMode?: 'cover' | 'contain';\n /**\n * Local path or remote URL to an image to fill the background of the loading screen. Image size and aspect ratio are up to you. Must be a .png.\n */\n image?: string;\n [k: string]: any;\n };\n /**\n * Firebase web configuration. Used by the expo-firebase packages on both web and native. [Learn more](https://firebase.google.com/docs/reference/js/firebase.html#initializeapp)\n */\n config?: {\n firebase?: {\n apiKey?: string;\n authDomain?: string;\n databaseURL?: string;\n projectId?: string;\n storageBucket?: string;\n messagingSenderId?: string;\n appId?: string;\n measurementId?: string;\n [k: string]: any;\n };\n [k: string]: any;\n };\n [k: string]: any;\n}\nexport interface PublishHook {\n file?: string;\n config?: {\n [k: string]: any;\n };\n [k: string]: any;\n}\n"]}
\No newline at end of file