Files
traque/mobile/traque-app/app.json
2026-02-15 19:23:29 +01:00

65 lines
1.6 KiB
JSON

{
"expo": {
"scheme": "la-traque",
"plugins": [
"expo-router",
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
],
"expo-font"
],
"newArchEnabled": true,
"name": "La Traque",
"slug": "la-traque",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/logo/logo_traque.png",
"splash": {
"image": "./assets/images/logo/logo_traque.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"platforms": [
"ios",
"android"
],
"android": {
"package": "net.rezel.traque",
"permissions": [
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"ACCESS_BACKGROUND_LOCATION",
"FOREGROUND_SERVICE",
"FOREGROUND_SERVICE_LOCATION",
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE",
"INTERNET",
"POST_NOTIFICATIONS"
],
"config": {
"googleMaps": {
"apiKey": "AIzaSyAA0Y1vdDMsqtrg18ZaWx098uEgNAyJPq0"
}
}
},
"ios": {
"bundleIdentifier": "net.rezel.traque",
"infoPlist": {
"UIBackgroundModes": [
"location"
],
"NSLocationAlwaysAndWhenInUseUsageDescription": "Your location is used to track you in the background.",
"NSLocationWhenInUseUsageDescription": "Location is used to track your movement."
},
"config": {
"googleMapsApiKey": "AIzaSyAA0Y1vdDMsqtrg18ZaWx098uEgNAyJPq0"
}
}
}
}