更新 app.json,添加包名;新增 eas.json 配置文件

This commit is contained in:
yuchenglong
2026-01-12 14:37:27 +08:00
parent ab21235a27
commit 486a298a1d
2 changed files with 29 additions and 1 deletions

View File

@@ -19,7 +19,8 @@
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false
"predictiveBackGestureEnabled": false,
"package": "com.physical"
},
"web": {
"output": "static",
@@ -43,6 +44,12 @@
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {},
"eas": {
"projectId": "67fa40bc-f726-467c-8edc-5639d89c0a9d"
}
}
}
}

21
eas.json Normal file
View File

@@ -0,0 +1,21 @@
{
"cli": {
"version": ">= 16.28.0",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {
"autoIncrement": true
}
},
"submit": {
"production": {}
}
}