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

时间:2017-05-26 07:41:23

标签: google-play

当我尝试发布新版本的应用时,我收到此错误

enter image description here

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

帮帮我吧!感谢。

1 个答案:

答案 0 :(得分: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...