mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 21:49:40 +02:00
Traces: - Change bundle ID from com.memoro.locations to com.mana.traces - Update BGTask identifiers to match new bundle ID - Add react-native-worklets dependency for reanimated compatibility - Configure eas.json with monorepo-optimized build settings - Add pnpm patch for reanimated 4.1.x to accept worklets 0.7.x - Skip auto-fingerprint on EAS (pnpm hoisted mode) - Disable default cache paths to avoid ENOENT Bot-services: - Add types: ["node"] to tsconfig to prevent RN type conflicts in hoisted mode Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
90 lines
2.9 KiB
JSON
90 lines
2.9 KiB
JSON
{
|
|
"expo": {
|
|
"name": "Traces",
|
|
"slug": "locations",
|
|
"version": "1.0.0",
|
|
"scheme": "traces",
|
|
"web": {
|
|
"bundler": "metro",
|
|
"output": "static",
|
|
"favicon": "./assets/favicon.png"
|
|
},
|
|
"plugins": [
|
|
"expo-router",
|
|
[
|
|
"expo-location",
|
|
{
|
|
"locationAlwaysAndWhenInUsePermission": "Diese App benötigt Zugriff auf Ihren Standort, auch im Hintergrund, um standortbezogene Funktionen anzubieten.",
|
|
"locationAlwaysPermission": "Diese App benötigt Zugriff auf Ihren Standort im Hintergrund, um standortbezogene Funktionen anzubieten.",
|
|
"locationWhenInUsePermission": "Diese App benötigt Zugriff auf Ihren Standort, um standortbezogene Funktionen anzubieten."
|
|
}
|
|
],
|
|
[
|
|
"expo-media-library",
|
|
{
|
|
"photosPermission": "Diese App benötigt Zugriff auf Ihre Fotos, um GPS-Daten aus Bildern zu extrahieren und Ihre Reise-Historie zu importieren.",
|
|
"savePhotosPermission": "Diese App speichert keine Fotos, sondern liest nur GPS-Metadaten.",
|
|
"isAccessMediaLocationEnabled": true
|
|
}
|
|
]
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true,
|
|
"tsconfigPaths": true
|
|
},
|
|
"orientation": "portrait",
|
|
"icon": "./assets/icon.png",
|
|
"userInterfaceStyle": "automatic",
|
|
"splash": {
|
|
"image": "./assets/splash.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"assetBundlePatterns": ["**/*"],
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"bundleIdentifier": "com.mana.traces",
|
|
"icon": "./assets/traces.icon",
|
|
"infoPlist": {
|
|
"NSLocationWhenInUseUsageDescription": "Diese App benötigt Zugriff auf Ihren Standort, um standortbezogene Funktionen anzubieten.",
|
|
"NSLocationAlwaysAndWhenInUseUsageDescription": "Diese App benötigt Zugriff auf Ihren Standort, auch im Hintergrund, um standortbezogene Funktionen anzubieten.",
|
|
"NSLocationAlwaysUsageDescription": "Diese App benötigt Zugriff auf Ihren Standort, um standortbezogene Funktionen anzubieten.",
|
|
"NSPhotoLibraryUsageDescription": "Diese App benötigt Zugriff auf Ihre Fotos, um GPS-Daten aus Bildern zu extrahieren.",
|
|
"UIBackgroundModes": ["location", "fetch", "processing"],
|
|
"BGTaskSchedulerPermittedIdentifiers": [
|
|
"com.mana.traces.locationupdatetask",
|
|
"com.mana.traces.locationprocessingtask"
|
|
]
|
|
},
|
|
"config": {
|
|
"usesNonExemptEncryption": false
|
|
}
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/adaptive-icon.png",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"package": "com.mana.traces",
|
|
"permissions": [
|
|
"ACCESS_COARSE_LOCATION",
|
|
"ACCESS_FINE_LOCATION",
|
|
"ACCESS_BACKGROUND_LOCATION",
|
|
"ACCESS_MEDIA_LOCATION",
|
|
"READ_EXTERNAL_STORAGE",
|
|
"READ_MEDIA_IMAGES",
|
|
"FOREGROUND_SERVICE",
|
|
"FOREGROUND_SERVICE_LOCATION"
|
|
]
|
|
},
|
|
"owner": "memoro",
|
|
"extra": {
|
|
"router": {
|
|
"origin": false
|
|
},
|
|
"eas": {
|
|
"projectId": "555a9045-475c-4226-a237-3ffe5366e446"
|
|
}
|
|
}
|
|
}
|
|
}
|