这是我的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?
为什么会出现这个错误?如何解决这个问题?