This commit is contained in:
zimplexing
2025-06-27 16:16:14 +08:00
commit 7e6095d2bb
111 changed files with 20915 additions and 0 deletions

53
eas.json Normal file
View File

@@ -0,0 +1,53 @@
{
"cli": {
"version": ">= 3.15.1"
},
"build": {
"development": {
"extends": "production",
"distribution": "internal",
"android": {
"buildType": "apk",
"withoutCredentials": true,
"gradleCommand": ":app:assembleDebug"
},
"ios": {
"buildConfiguration": "Debug",
"simulator": true
}
},
"development_tv": {
"extends": "development",
"env": {
"EXPO_TV": "1"
}
},
"preview": {
"extends": "production",
"distribution": "internal",
"ios": {
"simulator": true
},
"android": {
"buildType": "apk",
"withoutCredentials": true
}
},
"preview_tv": {
"extends": "preview",
"env": {
"EXPO_TV": "1"
}
},
"production": {},
"production_tv": {
"extends": "production",
"env": {
"EXPO_TV": "1"
}
}
},
"submit": {
"production": {}
}
}