“无法解决:com.android.support:support-v4:26.0.0”和Gradle同步上的其他类似错误[重复]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了“无法解决:com.android.support:support-v4:26.0.0”和Gradle同步上的其他类似错误[重复]相关的知识,希望对你有一定的参考价值。
这个问题在这里已有答案:
我刚刚为android Mobile和Wear创建了一个新的Android Studio项目。初始gradle构建失败,因为我收到了几个错误 -
Error: Failed to resolve: com.android.support:support-v4:26.0.0
Error: Failed to resolve: com.android.support:percent:26.0.0
Error: Failed to resolve: com.android.support:recyclerview-v7:26.0.0
Error: Failed to resolve: com.android.support:support-annotations:26.0.0
对于每个错误,我都可以选择Install repository and sync project
,但是当我点击它时没有任何反应。我花了几个小时试图找到我收到这些错误的原因,但我找不到任何解决方案。有谁知道如何解决这些非常令人沮丧的错误?谢谢!
build.gradle(项目)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
build.gradle(手机)
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.georgeberdovskiy.androidweartest"
minSdkVersion 23
targetSdkVersion 26
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'
})
wearApp project(':wear')
compile 'com.google.android.gms:play-services-wearable:11.0.4'
compile 'com.android.support:appcompat-v7:26+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile "com.android.support:support-core-utils:26+"
testCompile 'junit:junit:4.12'
}
build.gradle(穿)
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.georgeberdovskiy.androidweartest"
minSdkVersion 23
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
provided 'com.google.android.wearable:wearable:2.0.4'
compile 'com.google.android.support:wearable:2.0.4'
compile 'com.google.android.gms:play-services-wearable:11.0.4'
compile "com.android.support:support-core-utils:26+"
}
我没有安装Android项目,但是当我想将现有项目的支持库版本升级到26.0.0时,我遇到了同样的问题。自26.0.0起,支持库可通过Google的Maven存储库获得。所以我不得不将存储库添加到我的构建中。 gradle文件。
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
查看https://developer.android.com/topic/libraries/support-library/setup.html了解更多详情。
我遇到这个问题,更改构建工具/ sdk版本没有用,明确写入编译版本没有用,离线构建不起作用。
最后我只是改变了可穿戴版本,这个问题就没了。
provided 'com.google.android.wearable:wearable:2.0.4'
compile 'com.google.android.support:wearable:2.0.4'
至
provided 'com.google.android.wearable:wearable:2.0.2'
compile 'com.google.android.support:wearable:2.0.2'
顺便说一下,我现在使用离线构建,因为当我检查这个问题时它真的很快。
以下对我有用:
在应用程序build.gradle中考虑添加以下内容:
allprojects {
repositories {
maven {
url "https://maven.google.com"
}
}
}
在模块build.gradle中:
compileSdkVersion 26
buildToolsVersion "26.0.1"
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.android.gms:play-services-wearable:11.0.4'
compile 'com.android.support:support-compat:26.0.1'
compile 'com.android.support:support-v4:26.0.1'
compile 'com.google.android.gms:play-services:11.0.4'
compile 'com.android.support:appcompat-v7:26.0.1'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:support-annotations:26.0.1'
compile 'com.android.support:support-vector-drawable:26.0.1'
compile 'com.android.support:animated-vector-drawable:26.0.1'
compile 'com.android.support:design:26.0.1'
compile 'com.android.support:support-v13:26.0.1'
compile 'com.android.support:percent:26.0.1'
compile 'com.android.support:wear:26.0.1'
compile 'com.google.android.support:wearable:2.0.4'
provided 'com.google.android.wearable:wearable:2.0.4'
}
要么将构建工具版本从26.0.1
更改为26.0.0
,要么可以用26.0.0
替换26.+
,如下所示。
compile 'com.android.support:support-v4:26.0.0'
至
compile 'com.android.support:support-v4:26.+"
与所有人一样......希望它有所帮助。快乐的编码! ^ _ ^
现在,我通过更改wear build.gradle来修复此问题:
compile 'com.google.android.support:wearable:2.0.3'
provided 'com.google.android.wearable:wearable:2.0.3'
似乎问题是com.google.android.support:wearable:2.0.4。有了这个,使用26.0.1构建工具编译很好。我没有进一步使用它,但它看起来像一个与存储库相关的依赖性问题,虽然这只是从错误消息中猜测。
在app/build.gradle
中添加以下依赖项。
repositories {
maven { url 'https://maven.fabric.io/public' }
maven{url 'https://maven.google.com'}
}
在您的gradle中添加以下依赖项
更换
compile 'com.android.support:support-v4:26.0.0'
同
compile 'com.android.support:support-v4:25.0.0'
和替换
compile 'com.android.support:appcompat-v7:26+'
同
compile 'com.android.support:appcompat-v7:25.0.0'
替换这个:
compile 'com.android.support:recyclerview-v7:26.0.0'
有了这个
compile 'com.android.support:recyclerview-v7:26.0.0-alpha1'
和所有人一样
更新 - 发布新版本
compile 'com.android.support:recyclerview-v7:26.1.0'
我的项目给我这些错误的原因是因为我为Android平台26创建了项目。但是,Wear目前不支持26,并且必须将target
和compile
SDK版本更改为25的build.gradle。
链接到Android开发者文档 - https://developer.android.com/training/wearables/apps/creating.html#setting-up-a-phone
build.gradle(穿)
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.georgeberdovskiy.findmyphone"
minSdkVersion 25
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.support:wearable:2.0.3'
provided 'com.google.android.wearable:wearable:2.0.3'
compile 'com.google.android.gms:play-services-maps:11.0.4'
compile 'com.google.firebase:firebase-core:11.0.4'
compile 'com.google.firebase:firebase-database:11.0.4'
compile 'com.google.android.gms:play-services-wearable:11.0.4'
}
apply plugin: 'com.google.gms.google-services'
我只需要在wear模块中将编译和目标SDK版本更改为25。我把它们留给26作为移动模块。
这个对我有用
allprojects {
repositories {
jcenter()
google()
}
}
google()通过以下配置实现了神奇
Studio版本:3.0 beta 2
classpath 'com.android.tools.build:gradle:3.0.0-beta2'
distributionUrl=https://services.gradle.org/distributions/gradle-4.1-rc-1-all.zip
以上是关于“无法解决:com.android.support:support-v4:26.0.0”和Gradle同步上的其他类似错误[重复]的主要内容,如果未能解决你的问题,请参考以下文章
无法解决:'com.android.support:appcompat-v7' 不管我做啥
无法解决:com.android.support:cardview-v7:26.0.0 android
无法解决:com.android.support:appcompat-v7:26.0.0
“无法解决:com.android.support:support-v4:26.0.0”和Gradle同步上的其他类似错误[重复]