2017-05-26 7 views
7

मैं जब मैं एप्लिकेशनअनुमति मॉडल ढाल - Google Play स्टोर नए एप्लिकेशन संस्करण जारी

enter image description here

अगर मैं एंड्रॉयड बदलने मैं एक ही त्रुटि हो रही है के नए संस्करण जारी करने के लिए कोशिश कर रहा हूँ इस त्रुटि हो रही है -minSdkVersion 23 भी।

मेरी मदद करें! धन्यवाद।

उत्तर

1

संकलित करने के लिए निम्नानुसार बदलें: * उचित एसडीके संस्करण स्थापित के साथ नवीनतम 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... 
संबंधित मुद्दे