Files
examples/with-electron/app.json
Evan Bacon 55ef5cd8d4 Merge pull request #44 from expo/@evanbacon/use-remote-assets
Use remote assets only in the app.json
2020-01-20 12:21:24 -08:00

32 lines
752 B
JSON
Executable File

{
"name": "with-electron",
"expo": {
"name": "with-electron",
"slug": "with-electron",
"privacy": "public",
"sdkVersion": "36.0.0",
"platforms": [
"ios",
"android",
"web"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "https://github.com/expo/expo/blob/master/templates/expo-template-blank/assets/icon.png?raw=true",
"splash": {
"image": "https://github.com/expo/expo/blob/master/templates/expo-template-blank/assets/splash.png?raw=true",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
}
}
}