katoikia-app/mobile-ui/app.json

42 lines
957 B
JSON
Raw Normal View History

2022-07-02 03:18:35 +00:00
{
"expo": {
2022-08-04 07:22:41 +00:00
"name": "my-app",
"slug": "my-app",
"version": "1.0.0",
2022-07-02 03:18:35 +00:00
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
2022-08-04 07:22:41 +00:00
"resizeMode": "contain",
2022-07-02 03:18:35 +00:00
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
2022-08-21 23:25:22 +00:00
"supportsTablet": true,
"infoPlist": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads" : true,
"NSAllowsArbitraryLoadsForMedia": true,
"NSAllowsArbitraryLoadsInWebContent": true,
"NSExceptionAllowsInsecureHTTPLoads": true
}
},
"bundleIdentifier": "1.1.0"
2022-07-02 03:18:35 +00:00
},
2022-08-04 07:22:41 +00:00
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
2022-07-02 03:18:35 +00:00
}
}