如何使用最新的支持库(使用支持库26.0.2和compileSDKVersion 26解决错误失败)?

Aji*_* O. 9 android android-gradle-plugin

我已将compileSdkVersion更新为26.这就是我的gradle文件现在的样子.

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId ##############
        minSdkVersion 21
        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'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:recyclerview-v7:25.3.1'
    compile 'com.android.support:cardview-v7:25.3.1'
    testCompile 'junit:junit:4.12'
}
Run Code Online (Sandbox Code Playgroud)

可以预见,我得到了支持库(25.3.1)和CompileSdkVersion(26)版本中不匹配(?)的警告.

我试图将支持库版本更新为以下版本:

  • 编译'com.android.support:appcompat-v7:26.0.0'
  • 编译'com.android.support:appcompat-v7:26.0.2'

问题

他们都没有工作.两种情况都显示Failed to resolve错误.点击Install Repository and sync project冻结Android Studio几秒钟,没有其他任何事情发生.

我错过了什么吗?

最新的Android版本的支持库这里26.0.2.

Int*_*iya 33

您应该在您的部分中添加此 内容.App Level build.gradle

最后

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

然后Clean-RebuildRun.

FYI

如果您使用的是某个版本Gradle higher than 4.1,则必须使用:

allprojects {
      repositories {  
        google()

    }
}
Run Code Online (Sandbox Code Playgroud)