Update expo project to use stuff its gonna use

This commit is contained in:
2025-09-15 16:21:49 -05:00
parent c218d2edc2
commit ddce36c366
11 changed files with 133 additions and 27 deletions

View File

@@ -1,25 +1,45 @@
{
"expo": {
"name": "techtracker-expo",
"name": "Tech Tracker",
"owner": "gib",
"slug": "techtracker-expo",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "techtrackerexpo",
"scheme": "org.gbrown.techtrackerexpo",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#2e2f3d"
},
"newArchEnabled": true,
"ios": {
"supportsTablet": true
"usesAppleSignIn": true,
"supportsTablet": true,
"bundleIdentifier": "com.gbrown.techtracker",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSLocationWhenInUseUsageDescription": "This app uses your location in order to allow you to share your location in chat.",
"NSCameraUsageDescription": "This app uses your camera to take photos & send them in the chat."
}
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#E6F4FE",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#2e2f3d"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.RECEIVE_BOOT_COMPLETED",
"android.permission.VIBRATE",
"android.permission.INTERNET"
],
"package": "com.gbrown.techtracker"
},
"web": {
"output": "static",
@@ -27,6 +47,7 @@
},
"plugins": [
"expo-router",
"expo-apple-authentication",
[
"expo-splash-screen",
{
@@ -38,6 +59,27 @@
"backgroundColor": "#000000"
}
}
],
[
"expo-secure-store",
{
"faceIDPermission": "Allow $(PRODUCT_NAME) to access your FaceID biometric data."
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location."
}
],
[
"@sentry/react-native/expo",
{
"url": "https://sentry.gbrown.org",
"note": "Use SENTRY_AUTH_TOKEN env to authenticate with Sentry.",
"project": "tech-tracker-expo",
"organization": "gib"
}
]
],
"experiments": {