您的应用程序当前以API级别23为目标。但是,必须从最低API级别26为目标,才能从最新的API中受益

时间:2018-08-23 00:59:33

标签: android-studio google-play

请,我正在Google Play上发布应用程序,并且API版本存在问题,我已经尝试将API版本更改为最新版本,但没有工作。 错误消息为:您的应用程序当前针对的是API级别23。但是,必须将API的级别至少为26,才能受益于针对安全性和性能进行了优化的最新API。将应用程序的目标API级别设置为至少26。

这是我的 app.gradle

apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '27.0.3'

defaultConfig {
    applicationId "com.me.guide.myapp"
    minSdkVersion 15
    targetSdkVersion 23
    versionCode 1
    versionName "DEVELOP-EMS"
}
buildTypes {
    release {
        debuggable false
        minifyEnabled true
        shrinkResources true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
} 
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.google.android.gms:play-services-ads:8.4.0'
}

谢谢?

1 个答案:

答案 0 :(得分:1)

targetSdkVersion更改为26。您说这不起作用。这是必需的解决方案,所以您能说说为什么它不起作用吗?