关于最新的android studio 3.0.1的Gradle 4.1问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于最新的android studio 3.0.1的Gradle 4.1问题相关的知识,希望对你有一定的参考价值。
虽然我有一个更新的android工作室我收到以下错误但我找不到Gradle文件夹中的gradle 4.1但是当我检查文件 - >项目结构 - > gradle插件是4。
Error:Could not find com.android.tools.build:gradle:4.1.
Searched in the following locations:
file:/C:/Program Files/Android/Android Studio/gradle/m2repository/com/android/tools/build/gradle/4.1/gradle-4.1.pom
file:/C:/Program Files/Android/Android Studio/gradle/m2repository/com/android/tools/build/gradle/4.1/gradle-4.1.jar
https://jcenter.bintray.com/com/android/tools/build/gradle/4.1/gradle-4.1.pom
https://jcenter.bintray.com/com/android/tools/build/gradle/4.1/gradle-4.1.jar
https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/4.1/gradle-4.1.pom
https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/4.1/gradle-4.1.jar
我的build.gradle文件就是这个。我把它设置为23因为我需要在5.0.1手机上运行它。
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.threewire.myapplication"
minSdkVersion 10
targetSdkVersion 23
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:23.1.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
答案
您可以将此语句添加到gradle.properties文件中
android.enableAapt2=false
另一答案
检查你的工具版本,它应该是3.0.1
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
请注意,google()
存储库很重要。新的插件发布在那里。
另一答案
尝试在存储库中添加google()
。
另一答案
对于我的项目是正确的“build.gradle”中的下一个构造:
buildscript {
repositories {
jcenter()
google()
}
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 {
jcenter()
google()
}
}
另一答案
尝试使用标准设置重新安装您正在使用的Android版本。使用稳定版本代替您的计算机
以上是关于关于最新的android studio 3.0.1的Gradle 4.1问题的主要内容,如果未能解决你的问题,请参考以下文章