schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
expo-46.0.0.json | resizeMode | Determines how the `image` will be displayed in the splash loading screen. Must be one of `cover` or `contain`, defaults to `contain`. | {"enum": ["cover", "contain"], "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 | tabletImage | 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 | Splash | Configuration for loading and splash screen for standalone apps. | {"type": "object", "properties": {"backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "resizeMode": {"enum": ["cover", "contain"], "type": "string"}, "image": {"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` or `contain`, defaults to `contain`. | {"enum": ["cover", "contain"], "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 | Web | Configuration that is specific to the web platform. | {"type": "object", "additionalProperties": true, "properties": {"favicon": {"type": "string"}, "name": {"type": "string"}, "shortName": {"type": "string"}, "lang": {"type": "string"}, "scope": {"type": "string"}, "themeColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "dir": {"enum": ["auto", "ltr", "rtl"], "type": "string"}, "display": {"enum": ["fullscreen", "standalone", "minimal-ui", "browser"], "type": "string"}, "startUrl": {"type": "string"}, "orientation": {"enum": ["any", "natural", "landscape", "landscape-primary", "landscape-secondary", "portrait", "portrait-primary", "portrait-secondary"], "type": "string"}, "backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "barStyle": {"enum": ["default", "black", "black-translucent"], "type": "string"}, "preferRelatedApplications": {"type": "boolean"}, "dangerous": {"type": "object", "properties": {}, "additionalProperties": true}, "splash": {"type": "object", "properties": {"backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "resizeMode": {"enum": ["cover", "contain"], "type": "string"}, "image": {"type": "string"}}}, "config": {"type": "object", "properties": {"firebase": {"type": "object", "properties": {"apiKey": {"type": "string"}, "authDomain": {"type": "string"}, "databaseURL": {"type": "string"}, "projectId": {"type": "string"}, "storageBucket": {"type": "string"}, "messagingSenderId": {"type": "string"}, "appId": {"type": "string"}, "measurementId": {"type": "string"}}}}}}} |
expo-46.0.0.json | favicon | Relative path of an image to use for your app's favicon. | {"type": "string"} |
expo-46.0.0.json | name | Defines the title of the document, defaults to the outer level name | {"type": "string"} |
expo-46.0.0.json | shortName | 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. | {"type": "string"} |
expo-46.0.0.json | lang | Specifies the primary language for the values in the name and short_name members. This value is a string containing a single language tag. | {"type": "string"} |
expo-46.0.0.json | scope | 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. | {"type": "string"} |
expo-46.0.0.json | themeColor | Defines the color of the Android tool bar, and may be reflected in the app's preview in task switchers. | {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"} |
expo-46.0.0.json | description | Provides a general description of what the pinned website does. | {"type": "string"} |
expo-46.0.0.json | dir | 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. | {"enum": ["auto", "ltr", "rtl"], "type": "string"} |
expo-46.0.0.json | display | Defines the developers' preferred display mode for the website. | {"enum": ["fullscreen", "standalone", "minimal-ui", "browser"], "type": "string"} |
expo-46.0.0.json | startUrl | 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. | {"type": "string"} |
expo-46.0.0.json | orientation | Defines the default orientation for all the website's top level browsing contexts. | {"enum": ["any", "natural", "landscape", "landscape-primary", "landscape-secondary", "portrait", "portrait-primary", "portrait-secondary"], "type": "string"} |
expo-46.0.0.json | backgroundColor | 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. | {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"} |
expo-46.0.0.json | barStyle | 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. | {"enum": ["default", "black", "black-translucent"], "type": "string"} |
expo-46.0.0.json | preferRelatedApplications | 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. | {"type": "boolean"} |
expo-46.0.0.json | dangerous | Experimental features. These will break without deprecation notice. | {"type": "object", "properties": {}, "additionalProperties": true} |
expo-46.0.0.json | splash | Configuration for PWA splash screens. | {"type": "object", "properties": {"backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "resizeMode": {"enum": ["cover", "contain"], "type": "string"}, "image": {"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` or `contain`, defaults to `contain`. | {"enum": ["cover", "contain"], "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 | config | 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) | {"type": "object", "properties": {"firebase": {"type": "object", "properties": {"apiKey": {"type": "string"}, "authDomain": {"type": "string"}, "databaseURL": {"type": "string"}, "projectId": {"type": "string"}, "storageBucket": {"type": "string"}, "messagingSenderId": {"type": "string"}, "appId": {"type": "string"}, "measurementId": {"type": "string"}}}}} |
expo-46.0.0.json | name | The name of your app as it appears both within Expo Go and on your home screen as a standalone app. | {"type": "string"} |
expo-46.0.0.json | description | A short description of what your app is and why it is great. | {"type": "string"} |
expo-46.0.0.json | slug | The friendly URL name for publishing. For example, `myAppName` will refer to the `expo.io/@project-owner/myAppName` project. | {"type": "string", "pattern": "^[a-zA-Z0-9_\\-]+$"} |
expo-46.0.0.json | owner | 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. | {"type": "string", "minLength": 1} |
expo-46.0.0.json | currentFullName | 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. | {"type": "string"} |
expo-46.0.0.json | originalFullName | 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. | {"type": "string"} |
expo-46.0.0.json | privacy | 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`. | {"enum": ["public", "unlisted", "hidden"], "type": "string"} |
expo-46.0.0.json | sdkVersion | The Expo sdkVersion to run the project on. This should line up with the version specified in your package.json. | {"type": "string", "pattern": "^(\\d+\\.\\d+\\.\\d+)|(UNVERSIONED)$"} |
expo-46.0.0.json | runtimeVersion | Runtime versions are a property that guarantees compatibility between a build's native code and an update. When a project is made into a build, the build will contain some native code that cannot be changed with an update. Therefore, an update must be compatible with a build's native code to run on the build. | {"anyOf": [{"type": "string", "pattern": "^[0-9.]+$"}, {"type": "object", "properties": {"policy": {"type": "string", "enum": ["appVersion", "nativeVersion", "sdkVersion"]}}, "required": ["policy"]}]} |
expo-46.0.0.json | version | 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.io/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). | {"type": "string"} |
expo-46.0.0.json | platforms | Platforms that your project explicitly supports. If not specified, it defaults to `["ios", "android"]`. | {"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["android", "ios", "web"]}} |
expo-46.0.0.json | githubUrl | 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. | {"pattern": "^https://github\\.com/", "type": ["string"]} |
expo-46.0.0.json | orientation | Locks your app to a specific orientation with portrait or landscape. Defaults to no lock. Valid values: `default`, `portrait`, `landscape` | {"enum": ["default", "portrait", "landscape"], "type": "string"} |
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 | backgroundColor | The background color for your app, behind any of your React views. This is also known as the root view background color. | {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"} |
expo-46.0.0.json | primaryColor | 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. | {"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. We recommend that you use a 1024x1024 png file. This icon will appear on the home screen and within the Expo app. | {"type": "string"} |
expo-46.0.0.json | notification | Configuration for remote (push) notifications. | {"type": "object", "properties": {"icon": {"type": "string"}, "color": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "iosDisplayInForeground": {"type": "boolean"}, "androidMode": {"enum": ["default", "collapse"], "type": "string"}, "androidCollapsedTitle": {"type": "string"}}, "additionalProperties": false} |
expo-46.0.0.json | icon | (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. | {"type": "string"} |
expo-46.0.0.json | color | (Android only) Tint color for the push notification image when it appears in the notification tray. Defaults to `#ffffff` | {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"} |
expo-46.0.0.json | iosDisplayInForeground | 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.io/push-notifications/receiving-notifications/#foreground-notification-behavior) Defaults to `false`. | {"type": "boolean"} |
expo-46.0.0.json | androidMode | Show each push notification individually (`default`) or collapse into one (`collapse`). | {"enum": ["default", "collapse"], "type": "string"} |
expo-46.0.0.json | androidCollapsedTitle | If `androidMode` is set to `collapse`, this title is used for the collapsed notification message. For example, `'#{unread_notifications} new interactions'`. | {"type": "string"} |
expo-46.0.0.json | appKey | 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. | {"type": "string"} |
expo-46.0.0.json | androidStatusBar | Configuration for the status bar on Android. For more details please navigate to [Configuring StatusBar](https://docs.expo.io/guides/configuring-statusbar/). | {"type": "object", "properties": {"barStyle": {"type": "string", "enum": ["light-content", "dark-content"]}, "backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "hidden": {"type": "boolean"}, "translucent": {"type": "boolean"}}, "additionalProperties": false} |
expo-46.0.0.json | barStyle | Configures the status bar icons to have a light or dark color. Valid values: `light-content`, `dark-content`. Defaults to `dark-content` | {"type": "string", "enum": ["light-content", "dark-content"]} |
expo-46.0.0.json | backgroundColor | 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 | {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"} |
expo-46.0.0.json | hidden | Instructs the system whether the status bar should be visible or not. Defaults to `false` | {"type": "boolean"} |
expo-46.0.0.json | translucent | 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). | {"type": "boolean"} |
expo-46.0.0.json | androidNavigationBar | Configuration for the bottom navigation bar on Android. | {"type": "object", "properties": {"visible": {"type": "string", "enum": ["leanback", "immersive", "sticky-immersive"]}, "barStyle": {"type": "string", "enum": ["light-content", "dark-content"]}, "backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}}, "additionalProperties": false} |
expo-46.0.0.json | visible | 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`
`leanback` results in the navigation bar being hidden until the first touch gesture is registered.
`immersive` results in the navigation bar being hidden until the user swipes up from the edge where the navigation bar is hidden.
`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 | {"type": "string", "enum": ["leanback", "immersive", "sticky-immersive"]} |
expo-46.0.0.json | barStyle | Configure the navigation bar icons to have a light or dark color. Supported on Android Oreo and newer. Valid values: `'light-content'`, `'dark-content'` | {"type": "string", "enum": ["light-content", "dark-content"]} |
expo-46.0.0.json | backgroundColor | Specifies the background color of the navigation bar. | {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"} |
expo-46.0.0.json | developmentClient | Settings that apply specifically to running this app in a development client | {"type": "object", "properties": {"silentLaunch": {"type": "boolean"}}, "additionalProperties": false} |
expo-46.0.0.json | silentLaunch | If true, the app will launch in a development client with no additional dialogs or progress indicators, just like in a standalone app. | {"type": "boolean"} |
expo-46.0.0.json | scheme | **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. | {"type": "string", "pattern": "^[a-z][a-z0-9+.-]*$"} |
expo-46.0.0.json | entryPoint | The relative path to your main JavaScript file. | {"type": "string"} |
expo-46.0.0.json | extra | Any extra fields you want to pass to your experience. Values are accessible via `Expo.Constants.manifest.extra` ([Learn more](https://docs.expo.io/versions/latest/sdk/constants/#constantsmanifest)) | {"type": "object", "properties": {}, "additionalProperties": true} |
expo-46.0.0.json | packagerOpts | @deprecated Use a `metro.config.js` file instead. [Learn more](https://docs.expo.io/guides/customizing-metro/) | {"type": "object", "properties": {}, "additionalProperties": true} |
expo-46.0.0.json | updates | Configuration for how and when the app should request OTA JavaScript updates | {"type": "object", "properties": {"enabled": {"type": "boolean"}, "checkAutomatically": {"enum": ["ON_ERROR_RECOVERY", "ON_LOAD"], "type": "string"}, "fallbackToCacheTimeout": {"type": "number", "minimum": 0, "maximum": 300000}, "url": {"type": "string"}}, "additionalProperties": false} |
expo-46.0.0.json | enabled | 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) | {"type": "boolean"} |
expo-46.0.0.json | checkAutomatically | 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` | {"enum": ["ON_ERROR_RECOVERY", "ON_LOAD"], "type": "string"} |
expo-46.0.0.json | fallbackToCacheTimeout | 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). | {"type": "number", "minimum": 0, "maximum": 300000} |
expo-46.0.0.json | url | URL from which expo-updates will fetch update manifests | {"type": "string"} |
expo-46.0.0.json | locales | Provide overrides by locale for System Dialog prompts like Permissions Boxes | {"type": "object", "properties": {}, "additionalProperties": {"type": ["string", "object"]}} |
expo-46.0.0.json | facebookAppId | Used for all Facebook libraries. Set up your Facebook App ID at https://developers.facebook.com. | {"type": "string", "pattern": "^[0-9]+$"} |
expo-46.0.0.json | facebookAutoInitEnabled | Whether the Facebook SDK should be initialized automatically. The default in Expo (Client and in standalone apps) is `false`. | {"type": "boolean"} |
expo-46.0.0.json | facebookAutoLogAppEventsEnabled | 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` | {"type": "boolean"} |
expo-46.0.0.json | facebookAdvertiserIDCollectionEnabled | 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.) | {"type": "boolean"} |
expo-46.0.0.json | facebookDisplayName | Used for native Facebook login. | {"type": "string"} |
expo-46.0.0.json | facebookScheme | 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). | {"type": "string", "pattern": "^fb[0-9]+[A-Za-z]*$"} |
expo-46.0.0.json | isDetached | Is app detached | {"type": "boolean"} |
expo-46.0.0.json | detach | Extra fields needed by detached apps | {"type": "object", "properties": {}, "additionalProperties": true} |
expo-46.0.0.json | assetBundlePatterns | 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.io/guides/offline-support/) | {"type": "array", "items": {"type": "string"}} |
expo-46.0.0.json | plugins | Config plugins for adding extra functionality to your project. [Learn more](https://docs.expo.io/guides/config-plugins/). | {"type": "array", "items": {"anyOf": [{"type": ["string"]}, {"type": "array", "items": [{"type": ["string"]}, {}], "additionalItems": false}]}} |
expo-46.0.0.json | splash | Configuration for loading and splash screen for standalone apps. | {"type": "object", "properties": {"backgroundColor": {"type": "string", "pattern": "^(?:#|(#))[0-9a-fA-F]{6}$"}, "resizeMode": {"enum": ["cover", "contain"], "type": "string"}, "image": {"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` or `contain`, defaults to `contain`. | {"enum": ["cover", "contain"], "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 | 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"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.