当尝试在Google Play商店上载apk或应用捆绑包aab时出现以下错误 上传失败
您需要使用版本号为29或更低的SDK。
* 应用插件:“ com.android.application”
android { 编译版本29 buildToolsVersion“ 29.0.0” defaultConfig { applicationId“ in.starsignature.app” minSdkVersion 1 targetSdkVersion 29 版本代码2 versionName“ 1.2” }
*
答案 0 :(得分:0)
在build.gradle文件夹中更新配置
例如
android {
compileSdkVersion 29
defaultConfig {
...
minSdkVersion 21
targetSdkVersion 29
...
}
}