config for mobile

This commit is contained in:
talksik
2026-04-29 17:38:43 -07:00
parent 5acb29e6e3
commit 30fbca2188
3 changed files with 45 additions and 0 deletions
+4
View File
@@ -55,6 +55,10 @@ const config: ExpoConfig = {
typedRoutes: false,
},
extra: {
eas: {
projectId: "e902f7e5-e514-42bd-9591-75738e3494ed"
},
appEnv: APP_ENV,
},
};
+40
View File
@@ -0,0 +1,40 @@
{
"cli": {
"version": ">= 12.0.0",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": true
},
"env": {
"EXPO_PUBLIC_APP_ENV": "dev"
}
},
"preview": {
"distribution": "internal",
"ios": {
"simulator": true
},
"env": {
"EXPO_PUBLIC_APP_ENV": "dev"
}
},
"production": {
"autoIncrement": true,
"env": {
"EXPO_PUBLIC_APP_ENV": "prod"
}
}
},
"submit": {
"production": {
"ios": {
"appleTeamId": "RK9WWM4Q99"
}
}
}
}
+1
View File
@@ -6,6 +6,7 @@
"scripts": {
"start": "expo start",
"ios": "expo run:ios --device",
"publish:ios": "eas build --platform ios --auto-submit && echo 'Go to App Store Connect and submit the testflight build for app review. Visit for more information: https://docs.expo.dev/submit/introduction/'",
"android": "expo run:android",
"compile": "tsc --noEmit",
"lint": "expo lint"