所有内容都已更新,但Android Studio未使用最新的构建工具。 这是错误:(我测试通过将这些版本代码从26更改为27以及我的skd文件夹上的其他版本(甚至扩展名为27.0.2)和添加的构建工具字符串,在compileSdkVersion下面但没有工作。)
这里安装了工具:(已安装的Build-tools版本27.0.2)
只知道它在消息窗口中显示,但不知道是否使用了较低版本代码的任何其他组件版本。
(也使用gradle4.4)
我在哪里可以更改生效的版本代码? 这有什么问题?/可能的原因是什么?
注意:我知道我只需点击该链接即可解决问题,但这是一个比我更愿意并且愿意使用的版本代码。
非常感谢你的时间。
答案 0 :(得分:1)
对于初学者来说,总是使用最新的构建工具进行项目开发,无论何时创建项目,都要指定最旧的版本,这样 gradle 会选择最旧和最新的版本并编译项目因此。您错过的是您没有在项目的 gradle 文件中提供buildToolsVersions
。这就是为什么它无法找到你提到的构建项目的工具。更改你的 gradle 文件,它应该可以工作:
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "Your app ID"
minSdkVersion 16
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
multiDexEnabled = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions{
abortOnError false
}
}
答案 1 :(得分:1)
试试这个
这是我的app level gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion "27.0.2"
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 16
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'
}
}
}
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.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:27.0.2'
}
这是我的项目级别gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven {
url "https://jitpack.io"
}
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是我的 gradle-wrapper.properties
将gradle更改为4.1,如图所示。
答案 2 :(得分:0)
请在compileSdkVersion
下面添加此行buildToolsVersion" 27.0.1"