Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Permission model downgrade - Google Play Store new app version release

Tags:

google-play

I am getting this error when i am trying to release new version of the app

enter image description here

I am getting the same error if i change the android-minSdkVersion to 23 also.

Help me out! Thanks.

like image 370
Mohan Avatar asked May 26 '17 07:05

Mohan


1 Answers

Change to compileSDKVersion as follows : *Remember to use the latest buildToolVersion with proper SDK Version installed .

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...
like image 177
Raju yourPepe Avatar answered Oct 06 '22 04:10

Raju yourPepe