Apple sign in is mostly working. Did some other stuff too

This commit is contained in:
2025-03-06 12:31:32 -06:00
parent 708c0553f5
commit 84cae666bf
10 changed files with 950 additions and 184 deletions

View File

@@ -1,24 +1,41 @@
{
"expo": {
"name": "Tech Tracker Expo",
"slug": "tech-tracker-expo",
"name": "Tech Tracker",
"slug": "tech-tracker",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "com.techtracker",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#2e2f3d"
},
"newArchEnabled": true,
"ios": {
"usesAppleSignIn": true,
"supportsTablet": true,
"bundleIdentifier": "com.gibbyb.techtrackerexpo"
"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": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
"backgroundColor": "#2e2f3d"
},
"package": "com.gibbyb.techtrackerexpo"
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION"
],
"package": "com.gbrown.techtracker"
},
"web": {
"bundler": "metro",
@@ -36,8 +53,19 @@
"backgroundColor": "#ffffff"
}
],
"expo-secure-store",
"expo-apple-authentication"
[
"expo-secure-store",
{
"faceIDPermission": "Allow $(PRODUCT_NAME) to access your FaceID biometric data."
}
],
"expo-apple-authentication",
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location."
}
]
],
"experiments": {
"typedRoutes": true
@@ -51,8 +79,6 @@
"updates": {
"url": "https://u.expo.dev/7d872415-9160-4e06-ba95-4c3442e04b79"
},
"runtimeVersion": {
"policy": "appVersion"
}
"runtimeVersion": "1.0.0"
}
}