更新EAS配置,添加Android环境变量以禁用Maven缓存

This commit is contained in:
yuchenglong
2026-01-13 11:29:47 +08:00
parent 36fa397bc7
commit cd42aac982

View File

@@ -6,16 +6,31 @@
"build": { "build": {
"development": { "development": {
"developmentClient": true, "developmentClient": true,
"distribution": "internal" "distribution": "internal",
"android": {
"env": {
"EAS_BUILD_DISABLE_MAVEN_CACHE": "1"
}
}
}, },
"preview": { "preview": {
"distribution": "internal" "distribution": "internal",
"android": {
"env": {
"EAS_BUILD_DISABLE_MAVEN_CACHE": "1"
}
}
}, },
"production": { "production": {
"autoIncrement": true "autoIncrement": true,
"android": {
"env": {
"EAS_BUILD_DISABLE_MAVEN_CACHE": "1"
}
}
} }
}, },
"submit": { "submit": {
"production": {} "production": {}
} }
} }