我正在使用 IntelliJ Idea Community Edition 2017.2.5 并正在构建一个 Android 应用程序。
我的问题是,即使在我的应用程序(Gradle)中我有:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion "27.0.0"
defaultConfig {
applicationId "com.app.mtvtr"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:27.0.0'
compile 'com.android.support:design:27.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
compile 'com.android.support:support-v4:27.0.0'
testCompile 'junit:junit:4.12'
}
此外,在项目的第一次构建中,为 appcompat 编译,设计和支持设置为 27+(恕我直言,这是不好的做法,工作室已经指出这是一个坏主意),所以使用我拥有的工具,我已将其设置为 27.0.1,然后设置为 27.0.0 只是为了测试它是否可以工作..
在我的片段和活动中,我有:
警告说:
sdk platform-tools 版本 (26.0.2) 太旧,无法检查使用 API 27 编译的 API;请更新
现在,我知道关于旧版本和新版本的 SO 主题,但我(据我所知)正确设置了 Gradle,而且我无处使用平台工具版本 26 甚至 26.0.2 ......
我已经尝试过 3 次重新启动和使缓存无效。
该项目正确构建到设备上,一切正常。但是,当然,我想修复警告。(不要像有些人建议的那样隐藏它..)
想到的两件事是:
- 我错过了应该更新版本的地方,也许?
- 我需要从头开始一个新项目。
有任何想法吗?:)