Google Play requires that apps target API Level 26 or higher

编译过程中出现Google Play requires that apps target API Level 26 or higher


    compileSdkVersion 24
    buildToolsVersion '24.0.3'

    defaultConfig {
        applicationId "com.ct.htc"
        minSdkVersion 14
        //noinspection ExpiredTargetSdkVersion
        targetSdkVersion 24
        versionName "1.0"
        versionCode 1
    }
    
  在targetSdkVersion 24 上方添加
  //noinspection ExpiredTargetSdkVersion

版权声明:本文为dahaiwang原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。