SDK平台工具版本(23.1)太旧了,无法检查使用API​​ 25编译的API - android

时间:2016-11-01 06:15:52

标签: android android-studio

这是我的build.gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.0"

    buildTypes {
        debug {
            debuggable true
        }
    }

    defaultConfig {
        applicationId "com.wokoshop.sony.app"
        minSdkVersion 14
        targetSdkVersion 25
        versionCode 32
        versionName "4.16"
        multiDexEnabled = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

        }
    }

}

我在所有java文件中看到以下错误。

The SDK platform-tools version (23.1) is too old to check APIs compiled with API 25.

我没有在任何地方使用/看到23.1?

为什么会出现这个错误?如何解决这个问题?

0 个答案:

没有答案