权限模型降级 - Google Play商店新应用版本发布

7

当我尝试发布应用程序的新版本时,出现了以下错误:

enter image description here

如果我将android-minSdkVersion更改为23,我仍会遇到相同的错误。

请帮忙解决!谢谢。

1个回答

1
将compileSDKVersion更改为以下内容:*记得使用已安装适当SDK版本的最新buildToolVersion。
apply plugin: 'com.android.application'
android {
    compileSdkVersion 25
    buildToolsVersion '25.0.0'
    defaultConfig {
        applicationId "com.company.yourapp"
        minSdkVersion 19
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
//        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    bu...

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接