GT2/Ejectable/app.json

47 lines
1.0 KiB
JSON
Raw Normal View History

2021-08-16 07:50:50 +00:00
{
"expo": {
2021-08-27 00:01:49 +00:00
"name": "GT2 Green Travel Carbon App",
2021-08-26 23:45:52 +00:00
"slug": "GT2standalone",
2021-08-28 10:27:48 +00:00
"version": "2.0.5",
2021-08-21 13:05:22 +00:00
"orientation": "default",
2021-08-27 00:01:49 +00:00
"description": "Travel Carbon Footprint (simplified version)",
2021-08-16 07:50:50 +00:00
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
2021-08-24 07:57:21 +00:00
"supportsTablet": true,
"infoPlist": {
"UIBackgroundModes": [
"location",
"fetch"
]
}
2021-08-16 07:50:50 +00:00
},
"android": {
2021-08-28 10:27:48 +00:00
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"FOREGROUND_SERVICE"
],
2021-08-16 07:50:50 +00:00
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/images/favicon.png"
}
}
}