我已经安装了Android SDK Platform 26,Android SDK Tools 26.0.2
这是我的应用级build.gradle
文件。
的build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
...
minSdkVersion 15
targetSdkVersion 26
...
}
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:26.0.2'
compile 'com.android.support:support-v4:26.0.2'
testCompile 'junit:junit:4.12'
}
我无法同步gradle。我收到了这些错误:
Error:(26, 13) Failed to resolve: com.android.support:appcompat-v7:26.0.2
Error:(27, 13) Failed to resolve: com.android.support:support-v4:26.0.2
appcompat
和support
库版本是错误的吗?
我该如何解决这个问题?请帮忙。
提前致谢。
答案 0 :(得分:35)
它有两件事
<强>第一强>
This是宣布支持库最新版本的页面,我没有看到26.0.2版本。最新的是26.0.0-beta2和 请注意,26.0.0-beta2是预发布版本
<强>第二强>
确保您在项目的gradle文件中包含google的maven存储库。类似的东西:
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
答案 1 :(得分:-2)
appcompat版本必须与SdkVersion匹配。 试试这个
L2+L1