gpt4 book ai didi

安卓工作室 : not using latest build tools

转载 作者:行者123 更新时间:2023-11-29 19:03:38 24 4
gpt4 key购买 nike

一切都已更新,但 Android Studio 未使用最新的构建工具。这是错误:(我通过将这些版本代码从 26 更改为 27 以及我的 skd 文件夹中可用的其他版本(即使扩展名为 27.0.2)并在 compileSdkVersion 下方添加了构建工具字符串进行了测试,但没有用。) enter image description here

这里安装了工具:(已安装构建工具版本 27.0.2) enter image description here

只知道消息窗口中显示的这个,不知道是否使用了低版本代码的任何其他组件版本。

(同样使用gradle4.4)

我在哪里可以更改这些将生效的版本代码?这里有什么问题?/可能的原因是什么?

注意:我知道我可以单击该链接并可能解决问题,但这是一个低于我现有和愿意使用的版本代码。

非常感谢您的宝贵时间。

最佳答案

试试这个

这是我的应用级别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 enter image description here

如图所示,将 gradle 更改为 4.1。

关于安卓工作室 : not using latest build tools,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47987205/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com