gpt4 book ai didi

android - 带有gradle build 4.1的android studio 3.0.1中的Gradle同步错误

转载 作者:行者123 更新时间:2023-12-02 10:53:56 24 4
gpt4 key购买 nike

Below is the screenshot of the error, Any help will really be appreciated.

每当我加载新项目或创建一个新项目时,都会 pop 此错误,
这个错误让我困扰了2个星期,任何帮助将不胜感激。

最佳答案

安装AS 3.0.1时可能会遇到一些错误。其中最常见的是-

错误1 错误:无法找到Build Tools版本26.0.2“install.build.tools”安装Build Tools 26.0.2并同步项目。

解决方案:在build.gradle文件中更新配置,因为它现在正在寻找API26。如果 checkin SDK Manager,则表明您实际上具有版本27。因此,无需安装的SDK。 API级别26,而是按照以下方式更新build.gradle文件中的配置”:

=> 将compileSdkVersion从26更改为27,并将targetSdkVersion从26更改为27。

错误2 错误:未能找到Build Tools版本26.0.2
“install.build.tools”安装构建工具26.0.2并同步项目。

解决方案:在相同的(build.gradle)文件中,在compileSdkVersion 27下方添加buildToolsVersion“27.0.3”。该代码必须显示为:

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion "27.0.3"

defaultConfig {
applicationId "com.example.android.happybirthday"
minSdkVersion 15
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 {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

完成这些更改后,工作室应该可以正常工作,您就可以开始开发了。另一种验证方法是,您现在必须在菜单栏中的“工具”下看到“Android”子菜单。

关于android - 带有gradle build 4.1的android studio 3.0.1中的Gradle同步错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48459157/

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