flutter 为什么要显示此错误?如何解决这个错误?

ktca8awb  于 2023-05-01  发布在  Flutter
关注(0)|答案(1)|浏览(130)

我已经上传了一个apk文件在Google Play控制台帐户.我在这里得到这个错误。

defaultConfig {
  
    applicationId "com.abc.app"
    minSdkVersion 21
    targetSdkVersion 33
    versionCode 25
    versionName "1.1.12"
    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
}
afdcj2ne

afdcj2ne1#

将compilesdk版本设置为31 android { compileSdkVersion 31 defaultConfig { // ... targetSdkVersion 33 //。.. } //..}

相关问题