GT2/Ejectable/app.json

51 lines
1.2 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-30 00:19:58 +00:00
"version": "2.0.8",
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,
2021-08-28 22:36:13 +00:00
"bundleIdentifier": "app.greentravel.gt2",
2021-08-30 00:19:58 +00:00
"buildNumber": "4",
2021-08-24 07:57:21 +00:00
"infoPlist": {
"UIBackgroundModes": [
"location",
"fetch"
]
}
2021-08-16 07:50:50 +00:00
},
"android": {
2021-08-28 20:57:24 +00:00
"package": "app.greentravel.gt2",
2021-08-28 10:27:48 +00:00
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
2021-08-30 21:05:06 +00:00
"FOREGROUND_SERVICE",
"ACCESS_BACKGROUND_LOCATION"
2021-08-28 10:27:48 +00:00
],
2021-08-16 07:50:50 +00:00
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/images/favicon.png"
}
}
}