memowake-front/eas.json
2025-08-04 16:06:17 +08:00

30 lines
627 B
JSON

{
"cli": {
"version": ">= 16.11.0",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal",
"ios": {
"buildConfiguration": "Debug", // 👈 关键:使用 Debug 模式
"resourceClass": "m1-medium"
},
"android": {
"buildType": "apk", // 或 "app-bundle"
"gradleCommand": ":app:assembleDebug" // 使用 Debug 构建
}
},
"production": {
"autoIncrement": true
}
},
"submit": {
"production": {}
}
}