Files
territory-log/app.json
root 7df91a8e55
Some checks failed
Build (EAS) / EAS Build (Android Preview APK) (push) Failing after 3m41s
feat: add splash and adaptive icon assets, ignore EAS credentials
2026-02-21 17:56:35 +08:00

72 lines
1.8 KiB
JSON

{
"expo": {
"name": "TerritoryLog",
"slug": "territory-log",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "territorylog",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#1A6B72"
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.juankibin.territorylog"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#1A6B72"
},
"package": "com.juankibin.territorylog",
"versionCode": 1,
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT",
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO"
]
},
"web": {
"bundler": "metro"
},
"plugins": [
"expo-router",
"expo-sqlite",
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow TerritoryLog to use your location to tag ministry contacts."
}
],
[
"expo-local-authentication",
{
"faceIDPermission": "Allow TerritoryLog to use Face ID for app lock."
}
],
[
"expo-camera",
{
"cameraPermission": "Allow TerritoryLog to use the camera to scan QR codes."
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "3cbc82c9-a3ef-4589-9984-0e71b6474d9c"
}
}
}
}