schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
typingsrc.json
httpsProxy
The proxy to use for HTTPS requests
{"type": "string"}
typingsrc.json
key
Private key to use for SSL
{"type": "string"}
typingsrc.json
noProxy
A string of space-separated hosts to not proxy
{"type": "string"}
typingsrc.json
proxy
A HTTP(s) proxy URI for outgoing requests
{"type": "string"}
typingsrc.json
registryURL
Override the registry URL
{"type": "string"}
typingsrc.json
rejectUnauthorized
Reject invalid SSL certificates
{"type": "boolean", "default": true}
typingsrc.json
userAgent
Set the User-Agent for HTTP requests
{"type": "string"}
expo-46.0.0.json
Android
Configuration that is specific to the Android platform.
{"type": "object", "properties": {"publishManifestPath": {"type": "string"}, "publishBundlePath": {"type": "string"}, "package": {"type": "string", "pattern": "^[a-zA-Z][a-zA-Z0-9_]*(\\.[a-zA-Z][a-zA-Z0-9_]*)+$"}, "versionCode": {"type": "integer", "minimum": 0, "maximum": 2100000000}, "backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "userInterfaceStyle": {"type": "string", "enum": ["light", "dark", "automatic"]}, "useNextNotificationsApi": {"type": "boolean"}, "icon": {"type": "string"}, "adaptiveIcon": {"type": "object", "properties": {"foregroundImage": {"type": "string"}, "backgroundImage": {"type": "string"}, "backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}}, "additionalProperties": false}, "playStoreUrl": {"pattern": "^https://play\\.google\\.com/", "type": ["string"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "googleServicesFile": {"type": "string"}, "config": {"type": "object", "properties": {"branch": {"type": "object", "properties": {"apiKey": {"type": "string"}}, "additionalProperties": false}, "googleMaps": {"type": "object", "properties": {"apiKey": {"type": "string"}}, "additionalProperties": false}, "googleMobileAdsAppId": {"type": "string"}, "googleMobileAdsAutoInit": {"type": "boolean"}, "googleSignIn": {"type": "object", "properties": {"apiKey": {"type": "string"}, "certificateHash": {"type": "string"}}, "additionalProperties": false}}, "additionalProperties": false}, "splash": {"type": "object", "properties": {"backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "resizeMode": {"enum": ["cover", "contain", "native"], "type": "string"}, "image": {"type": "string"}, "mdpi": {"type": "string"}, "hdpi": {"type": "string"}, "xhdpi": {"type": "string"}, "xxhdpi": {"type": "string"}, "xxxhdpi": {"type": "string"}}}, "intentFilters": {"type": "array", "uniqueItems": true, "items": {"type": "object", "properties": {"autoVerify": {"type": "boolean"}, "action": {"type": "string"}, "data": {"anyOf": [{"type": "object", "properties": {"scheme": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "string"}, "path": {"type": "string"}, "pathPattern": {"type": "string"}, "pathPrefix": {"type": "string"}, "mimeType": {"type": "string"}}, "additionalProperties": false}, {"type": ["array"], "items": {"type": "object", "properties": {"scheme": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "string"}, "path": {"type": "string"}, "pathPattern": {"type": "string"}, "pathPrefix": {"type": "string"}, "mimeType": {"type": "string"}}, "additionalProperties": false}}]}, "category": {"anyOf": [{"type": ["string"]}, {"type": "array", "items": {"type": "string"}}]}}, "additionalProperties": false, "required": ["action"]}}, "allowBackup": {"type": "boolean"}, "softwareKeyboardLayoutMode": {"enum": ["resize", "pan"], "type": "string"}, "jsEngine": {"type": "string", "enum": ["hermes", "jsc"]}}, "additionalProperties": false}
expo-46.0.0.json
publishManifestPath
The manifest for the Android version of your app will be written to this path during publish.
{"type": "string"}
expo-46.0.0.json
publishBundlePath
The bundle for the Android version of your app will be written to this path during publish.
{"type": "string"}
expo-46.0.0.json
package
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).
{"type": "string", "pattern": "^[a-zA-Z][a-zA-Z0-9_]*(\\.[a-zA-Z][a-zA-Z0-9_]*)+$"}
expo-46.0.0.json
versionCode
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)
{"type": "integer", "minimum": 0, "maximum": 2100000000}
expo-46.0.0.json
backgroundColor
The background color for your Android app, behind any of your React views. Overrides the top-level `backgroundColor` key if it is present.
{"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}
expo-46.0.0.json
userInterfaceStyle
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`.
{"type": "string", "enum": ["light", "dark", "automatic"]}
expo-46.0.0.json
useNextNotificationsApi
@deprecated A Boolean value that indicates whether the app should use the new notifications API.
{"type": "boolean"}
expo-46.0.0.json
icon
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.
{"type": "string"}
expo-46.0.0.json
adaptiveIcon
Settings for an Adaptive Launcher Icon on Android. [Learn more](https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive)
{"type": "object", "properties": {"foregroundImage": {"type": "string"}, "backgroundImage": {"type": "string"}, "backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}}, "additionalProperties": false}
expo-46.0.0.json
foregroundImage
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.
{"type": "string"}
expo-46.0.0.json
backgroundImage
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).
{"type": "string"}
expo-46.0.0.json
backgroundColor
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.
{"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}
expo-46.0.0.json
playStoreUrl
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.
{"pattern": "^https://play\\.google\\.com/", "type": ["string"]}
expo-46.0.0.json
permissions
List of permissions used by the standalone app. 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: • receive data from Internet • view network connections • full network access • change your audio settings • prevent device from sleeping To use ALL permissions supported by Expo by default, do not specify the `permissions` key. To use the minimum necessary permissions ALONG with certain additional permissions, specify those extras in `permissions`, e.g. `[ "CAMERA", "ACCESS_FINE_LOCATION" ]`. You can specify the following permissions depending on what you need: - `ACCESS_COARSE_LOCATION` - `ACCESS_FINE_LOCATION` - `ACCESS_BACKGROUND_LOCATION` - `CAMERA` - `RECORD_AUDIO` - `READ_CONTACTS` - `WRITE_CONTACTS` - `READ_CALENDAR` - `WRITE_CALENDAR` - `READ_EXTERNAL_STORAGE` - `WRITE_EXTERNAL_STORAGE` - `USE_FINGERPRINT` - `USE_BIOMETRIC` - `WRITE_SETTINGS` - `VIBRATE` - `READ_PHONE_STATE` - `com.anddoes.launcher.permission.UPDATE_COUNT` - `com.android.launcher.permission.INSTALL_SHORTCUT` - `com.google.android.c2dm.permission.RECEIVE` - `com.google.android.gms.permission.ACTIVITY_RECOGNITION` - `com.google.android.providers.gsf.permission.READ_GSERVICES` - `com.htc.launcher.permission.READ_SETTINGS` - `com.htc.launcher.permission.UPDATE_SHORTCUT` - `com.majeur.launcher.permission.UPDATE_BADGE` - `com.sec.android.provider.badge.permission.READ` - `com.sec.android.provider.badge.permission.WRITE` - `com.sonyericsson.home.permission.BROADCAST_BADGE`
{"type": "array", "items": {"type": "string"}}
expo-46.0.0.json
googleServicesFile
[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.
{"type": "string"}
expo-46.0.0.json
config
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.
{"type": "object", "properties": {"branch": {"type": "object", "properties": {"apiKey": {"type": "string"}}, "additionalProperties": false}, "googleMaps": {"type": "object", "properties": {"apiKey": {"type": "string"}}, "additionalProperties": false}, "googleMobileAdsAppId": {"type": "string"}, "googleMobileAdsAutoInit": {"type": "boolean"}, "googleSignIn": {"type": "object", "properties": {"apiKey": {"type": "string"}, "certificateHash": {"type": "string"}}, "additionalProperties": false}}, "additionalProperties": false}
expo-46.0.0.json
branch
[Branch](https://branch.io/) key to hook up Branch linking services.
{"type": "object", "properties": {"apiKey": {"type": "string"}}, "additionalProperties": false}
expo-46.0.0.json
apiKey
Your Branch API key
{"type": "string"}
expo-46.0.0.json
googleMaps
[Google Maps Android SDK](https://developers.google.com/maps/documentation/android-api/signup) configuration for your standalone app.
{"type": "object", "properties": {"apiKey": {"type": "string"}}, "additionalProperties": false}
expo-46.0.0.json
apiKey
Your Google Maps Android SDK API key
{"type": "string"}
expo-46.0.0.json
googleMobileAdsAppId
[Google Mobile Ads App ID](https://support.google.com/admob/answer/6232340) Google AdMob App ID.
{"type": "string"}
expo-46.0.0.json
googleMobileAdsAutoInit
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)
{"type": "boolean"}
expo-46.0.0.json
googleSignIn
@deprecated Use `googleServicesFile` instead. [Google Sign-In Android SDK](https://developers.google.com/identity/sign-in/android/start-integrating) keys for your standalone app.
{"type": "object", "properties": {"apiKey": {"type": "string"}, "certificateHash": {"type": "string"}}, "additionalProperties": false}
expo-46.0.0.json
apiKey
The Android API key. Can be found in the credentials section of the developer console or in `google-services.json`.
{"type": "string"}
expo-46.0.0.json
certificateHash
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
{"type": "string"}
expo-46.0.0.json
splash
Configuration for loading and splash screen for managed and standalone Android apps.
{"type": "object", "properties": {"backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "resizeMode": {"enum": ["cover", "contain", "native"], "type": "string"}, "image": {"type": "string"}, "mdpi": {"type": "string"}, "hdpi": {"type": "string"}, "xhdpi": {"type": "string"}, "xxhdpi": {"type": "string"}, "xxxhdpi": {"type": "string"}}}
expo-46.0.0.json
backgroundColor
Color to fill the loading screen background
{"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}
expo-46.0.0.json
resizeMode
Determines how the `image` will be displayed in the splash loading screen. Must be one of `cover`, `contain` or `native`, defaults to `contain`.
{"enum": ["cover", "contain", "native"], "type": "string"}
expo-46.0.0.json
image
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.
{"type": "string"}
expo-46.0.0.json
mdpi
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) `Natural sized image (baseline)`
{"type": "string"}
expo-46.0.0.json
hdpi
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) `Scale 1.5x`
{"type": "string"}
expo-46.0.0.json
xhdpi
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) `Scale 2x`
{"type": "string"}
expo-46.0.0.json
xxhdpi
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) `Scale 3x`
{"type": "string"}
expo-46.0.0.json
xxxhdpi
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) `Scale 4x`
{"type": "string"}
expo-46.0.0.json
intentFilters
Configuration for setting an array of custom intent filters in Android manifest. [Learn more](https://developer.android.com/guide/components/intents-filters)
{"type": "array", "uniqueItems": true, "items": {"type": "object", "properties": {"autoVerify": {"type": "boolean"}, "action": {"type": "string"}, "data": {"anyOf": [{"type": "object", "properties": {"scheme": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "string"}, "path": {"type": "string"}, "pathPattern": {"type": "string"}, "pathPrefix": {"type": "string"}, "mimeType": {"type": "string"}}, "additionalProperties": false}, {"type": ["array"], "items": {"type": "object", "properties": {"scheme": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "string"}, "path": {"type": "string"}, "pathPattern": {"type": "string"}, "pathPrefix": {"type": "string"}, "mimeType": {"type": "string"}}, "additionalProperties": false}}]}, "category": {"anyOf": [{"type": ["string"]}, {"type": "array", "items": {"type": "string"}}]}}, "additionalProperties": false, "required": ["action"]}}
expo-46.0.0.json
autoVerify
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)
{"type": "boolean"}
expo-46.0.0.json
scheme
the scheme of the URL, e.g. `https`
{"type": "string"}
expo-46.0.0.json
host
the hostname, e.g. `myapp.io`
{"type": "string"}
expo-46.0.0.json
port
the port, e.g. `3000`
{"type": "string"}
expo-46.0.0.json
path
an exact path for URLs that should be matched by the filter, e.g. `/records`
{"type": "string"}
expo-46.0.0.json
pathPattern
a regex for paths that should be matched by the filter, e.g. `.*`
{"type": "string"}
expo-46.0.0.json
pathPrefix
a prefix for paths that should be matched by the filter, e.g. `/records/` will match `/records/123`
{"type": "string"}
expo-46.0.0.json
mimeType
a MIME type for URLs that should be matched by the filter
{"type": "string"}
expo-46.0.0.json
scheme
the scheme of the URL, e.g. `https`
{"type": "string"}
expo-46.0.0.json
host
the hostname, e.g. `myapp.io`
{"type": "string"}
expo-46.0.0.json
port
the port, e.g. `3000`
{"type": "string"}
expo-46.0.0.json
path
an exact path for URLs that should be matched by the filter, e.g. `/records`
{"type": "string"}
expo-46.0.0.json
pathPattern
a regex for paths that should be matched by the filter, e.g. `.*`
{"type": "string"}
expo-46.0.0.json
pathPrefix
a prefix for paths that should be matched by the filter, e.g. `/records/` will match `/records/123`
{"type": "string"}
expo-46.0.0.json
mimeType
a MIME type for URLs that should be matched by the filter
{"type": "string"}
expo-46.0.0.json
allowBackup
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`.
{"type": "boolean"}
expo-46.0.0.json
softwareKeyboardLayoutMode
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`.
{"enum": ["resize", "pan"], "type": "string"}
expo-46.0.0.json
jsEngine
Specifies the JavaScript engine. Supported only on EAS Build. Defaults to `jsc`. Valid values: `hermes`, `jsc`.
{"type": "string", "enum": ["hermes", "jsc"]}
expo-46.0.0.json
scheme
the scheme of the URL, e.g. `https`
{"type": "string"}
expo-46.0.0.json
host
the hostname, e.g. `myapp.io`
{"type": "string"}
expo-46.0.0.json
port
the port, e.g. `3000`
{"type": "string"}
expo-46.0.0.json
path
an exact path for URLs that should be matched by the filter, e.g. `/records`
{"type": "string"}
expo-46.0.0.json
pathPattern
a regex for paths that should be matched by the filter, e.g. `.*`
{"type": "string"}
expo-46.0.0.json
pathPrefix
a prefix for paths that should be matched by the filter, e.g. `/records/` will match `/records/123`
{"type": "string"}
expo-46.0.0.json
mimeType
a MIME type for URLs that should be matched by the filter
{"type": "string"}
expo-46.0.0.json
IOS
Configuration that is specific to the iOS platform.
{"type": "object", "properties": {"publishManifestPath": {"type": "string"}, "publishBundlePath": {"type": "string"}, "bundleIdentifier": {"type": "string", "pattern": "^[a-zA-Z0-9.-]+$"}, "buildNumber": {"type": "string", "pattern": "^[A-Za-z0-9\\.]+$"}, "backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "icon": {"type": "string"}, "merchantId": {"type": "string"}, "appStoreUrl": {"pattern": "^https://(itunes|apps)\\.apple\\.com/.*?\\d+", "type": ["string"]}, "config": {"type": "object", "properties": {"branch": {"type": "object", "properties": {"apiKey": {"type": "string"}}, "additionalProperties": false}, "usesNonExemptEncryption": {"type": "boolean"}, "googleMapsApiKey": {"type": "string"}, "googleMobileAdsAppId": {"type": "string"}, "googleMobileAdsAutoInit": {"type": "boolean"}, "googleSignIn": {"type": "object", "properties": {"reservedClientId": {"type": "string"}}, "additionalProperties": false}}, "additionalProperties": false}, "googleServicesFile": {"type": "string"}, "supportsTablet": {"type": "boolean"}, "isTabletOnly": {"type": "boolean"}, "requireFullScreen": {"type": "boolean"}, "userInterfaceStyle": {"type": "string", "enum": ["light", "dark", "automatic"]}, "infoPlist": {"type": "object", "properties": {}, "additionalProperties": true}, "entitlements": {"type": "object", "properties": {}, "additionalProperties": true}, "associatedDomains": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "usesIcloudStorage": {"type": "boolean"}, "usesAppleSignIn": {"type": "boolean"}, "accessesContactNotes": {"type": "boolean"}, "splash": {"type": "object", "properties": {"xib": {"type": "string"}, "backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "resizeMode": {"enum": ["cover", "contain"], "type": "string"}, "image": {"type": "string"}, "tabletImage": {"type": "string"}}}}, "additionalProperties": false}
expo-46.0.0.json
publishManifestPath
The manifest for the iOS version of your app will be written to this path during publish.
{"type": "string"}
expo-46.0.0.json
publishBundlePath
The bundle for the iOS version of your app will be written to this path during publish.
{"type": "string"}
expo-46.0.0.json
bundleIdentifier
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).
{"type": "string", "pattern": "^[a-zA-Z0-9.-]+$"}
expo-46.0.0.json
buildNumber
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`.)
{"type": "string", "pattern": "^[A-Za-z0-9\\.]+$"}
expo-46.0.0.json
backgroundColor
The background color for your iOS app, behind any of your React views. Overrides the top-level `backgroundColor` key if it is present.
{"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}
expo-46.0.0.json
icon
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. Expo will generate the other required sizes. This icon will appear on the home screen and within the Expo app.
{"type": "string"}
expo-46.0.0.json
merchantId
Merchant ID for use with Apple Pay in your standalone app.
{"type": "string"}
expo-46.0.0.json
appStoreUrl
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.
{"pattern": "^https://(itunes|apps)\\.apple\\.com/.*?\\d+", "type": ["string"]}
expo-46.0.0.json
config
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.
{"type": "object", "properties": {"branch": {"type": "object", "properties": {"apiKey": {"type": "string"}}, "additionalProperties": false}, "usesNonExemptEncryption": {"type": "boolean"}, "googleMapsApiKey": {"type": "string"}, "googleMobileAdsAppId": {"type": "string"}, "googleMobileAdsAutoInit": {"type": "boolean"}, "googleSignIn": {"type": "object", "properties": {"reservedClientId": {"type": "string"}}, "additionalProperties": false}}, "additionalProperties": false}
expo-46.0.0.json
branch
[Branch](https://branch.io/) key to hook up Branch linking services.
{"type": "object", "properties": {"apiKey": {"type": "string"}}, "additionalProperties": false}
expo-46.0.0.json
apiKey
Your Branch API key
{"type": "string"}
expo-46.0.0.json
usesNonExemptEncryption
Sets `ITSAppUsesNonExemptEncryption` in the standalone ipa's Info.plist to the given boolean value.
{"type": "boolean"}
expo-46.0.0.json
googleMapsApiKey
[Google Maps iOS SDK](https://developers.google.com/maps/documentation/ios-sdk/start) key for your standalone app.
{"type": "string"}
expo-46.0.0.json
googleMobileAdsAppId
[Google Mobile Ads App ID](https://support.google.com/admob/answer/6232340) Google AdMob App ID.
{"type": "string"}
expo-46.0.0.json
googleMobileAdsAutoInit
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)
{"type": "boolean"}
expo-46.0.0.json
googleSignIn
[Google Sign-In iOS SDK](https://developers.google.com/identity/sign-in/ios/start-integrating) keys for your standalone app.
{"type": "object", "properties": {"reservedClientId": {"type": "string"}}, "additionalProperties": false}
expo-46.0.0.json
reservedClientId
The reserved client ID URL scheme. Can be found in `GoogleService-Info.plist`.
{"type": "string"}
expo-46.0.0.json
googleServicesFile
[Firebase Configuration File](https://support.google.com/firebase/answer/7015592) Location of the `GoogleService-Info.plist` file for configuring Firebase.
{"type": "string"}
expo-46.0.0.json
supportsTablet
Whether your standalone iOS app supports tablet screen sizes. Defaults to `false`.
{"type": "boolean"}
expo-46.0.0.json
isTabletOnly
If true, indicates that your standalone iOS app does not support handsets, and only supports tablets.
{"type": "boolean"}
expo-46.0.0.json
requireFullScreen
If true, indicates that your standalone iOS app does not support Slide Over and Split View on iPad. Defaults to `true` currently, but will change to `false` in a future SDK version.
{"type": "boolean"}
expo-46.0.0.json
userInterfaceStyle
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`.
{"type": "string", "enum": ["light", "dark", "automatic"]}
expo-46.0.0.json
infoPlist
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.
{"type": "object", "properties": {}, "additionalProperties": true}
expo-46.0.0.json
entitlements
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.
{"type": "object", "properties": {}, "additionalProperties": true}
expo-46.0.0.json
associatedDomains
An array that contains Associated Domains for the standalone app. [Learn more](https://developer.apple.com/documentation/safariservices/supporting_associated_domains).
{"type": "array", "uniqueItems": true, "items": {"type": "string"}}
expo-46.0.0.json
usesIcloudStorage
A boolean indicating if the app uses iCloud Storage for `DocumentPicker`. See `DocumentPicker` docs for details.
{"type": "boolean"}
expo-46.0.0.json
usesAppleSignIn
A boolean indicating if the app uses Apple Sign-In. See `AppleAuthentication` docs for details.
{"type": "boolean"}
expo-46.0.0.json
accessesContactNotes
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.
{"type": "boolean"}
expo-46.0.0.json
splash
Configuration for loading and splash screen for standalone iOS apps.
{"type": "object", "properties": {"xib": {"type": "string"}, "backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "resizeMode": {"enum": ["cover", "contain"], "type": "string"}, "image": {"type": "string"}, "tabletImage": {"type": "string"}}}
expo-46.0.0.json
xib
@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.
{"type": "string"}
expo-46.0.0.json
backgroundColor
Color to fill the loading screen background
{"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}