编程语言
首页 > 编程语言> > java – “无法解决:com.android.support:support-v4:26.0.0”和Gradle同步上的其他类似错误

java – “无法解决:com.android.support:support-v4:26.0.0”和Gradle同步上的其他类似错误

作者:互联网

参见英文答案 > Failed to resolve: com.android.support:cardview-v7:26.0.0 android                                    23个
我刚刚为Android Mobile和Wear创建了一个新的Android Studio项目.初始gradle构建失败,因为我收到了几个错误 –

错误:无法解决:com.android.support:support-v4:26.0.0

错误:无法解决:com.android.support:percent:26.0.0

错误:无法解决:com.android.support:recyclerview-v7:26.0.0

错误:无法解决:com.android.support:support-annotations:26.0.0

对于每个错误,我都可以选择安装存储库和同步项目,但是当我点击它时没有任何反应.我花了几个小时试图找到我收到这些错误的原因,但我找不到任何解决方案.有谁知道如何解决这些非常令人沮丧的错误?谢谢!

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 Studio版本已更新,并且已安装所有支持存储库和API.
enter image description here

解决方法:

我没有安装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了解更多详情.

标签:android,java,wear-os,compiler-errors,gradle
来源: https://codeday.me/bug/20191004/1853457.html