每次我创建一个新的android工作室项目时,弹出这个错误,项目变得无用。
这是我的gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.dean.youtubeplayer"
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.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
任何人都有解决方案吗?
答案 0 :(得分:1)
转到" Gradle脚本"并单击" build.gradle" (第一个与项目而不是模块应用程序。用这个替换所有项目行:
allprojects {
repositories {
jcenter()
maven{
url "https://maven.google.com"
}
}
}