feat: configure EAS Build for production and add env example

This commit is contained in:
Antoni Nuñez Romeu
2026-07-06 12:09:41 +02:00
parent 454da1416d
commit c4fd5bfc77
3 changed files with 42 additions and 6 deletions
+12 -3
View File
@@ -14,20 +14,29 @@
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.farmafinder.app"
"bundleIdentifier": "com.farmafinder.app",
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#007AFF"
},
"package": "com.farmafinder.app"
"package": "com.farmafinder.app",
"googleServicesFile": "./google-services.json"
},
"plugins": [
"expo-router",
["expo-camera", {"cameraPermission": "Allow FarmaFinder to access your camera for scanning barcodes"}],
["expo-notifications", {"icon": "./assets/notification-icon.png", "color": "#007AFF"}]
],
"scheme": "farmafinder"
"scheme": "farmafinder",
"extra": {
"eas": {
"projectId": ""
}
}
}
}