我正在使用turtle cli构建一个独立的应用程序,并且我在app.json中遇到了android versionCode的麻烦,turtle cli无法更新它,因此无法部署到Google Play商店
{
"expo": {
"name": "Trekko",
"slug": "TrekkoReactNative",
"privacy": "public",
"sdkVersion": "32.0.0",
"platforms": [
"ios",
"android"
],
"version": "1.0.5",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.belizarsoft.trekko",
"versionCode": 3
}
}
}
答案 0 :(得分:0)
在构建应用之前,请先通过在expo XDE上单击“发布”或在终端上进行exp发布,尝试将其发布在expo服务器上。
并且versionCode必须为整数。