无法在 Android Studio 中安装支持存储库和同步项目

Cannot install Support repository and sync project in Android Studio

我正在尝试使用版本 25.2.0 的支持库 这样我就可以使用 CameraKit 库了。

我已经下载了最新的构建工具:

和支持存储库:

我的 gradle 文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion '25.0.2'
    defaultConfig {
        applicationId "com.sample.myapp"
        minSdkVersion 21
        targetSdkVersion 25
        versionCode 1
        versionName "1.1"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
repositories {
    maven {
        url "https://jitpack.io"
    }
    mavenCentral()
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    testCompile 'junit:junit:4.12'

    // Google libraries
    compile 'com.android.support:appcompat-v7:25.2.0'
    compile 'com.android.support:design:25.2.0'
    compile 'com.android.support:support-v4:25.2.0'
    compile 'com.google.android.gms:play-services-vision:10.0.1'
    compile 'com.android.volley:volley:1.0.0'

    // Third party libraries
    compile 'com.flurgle:camerakit:0.9.17'

    compile 'com.android.support:recyclerview-v7:25.2.0'
    compile 'com.android.support:cardview-v7:25.2.0'
}

问题: 对于每个支持库,我都会遇到问题:

Failed to resolve com.android.support:cardview-v7:25.2.0

如果我尝试单击 安装存储库和同步项目,则没有任何反应。

我以 gradle file 为例。会不会是我的错?

尝试使用最新的支持库版本:

compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.google.android.gms:play-services-vision:10.2.1'
compile 'com.android.volley:volley:1.0.0'
// Third party libraries
compile 'com.flurgle:camerakit:0.9.17'

compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'

这是详细信息Dependencies

编辑

使用Google Maven Repository

要将它们添加到您的构建中,您需要首先将 Google 的 Maven 存储库包含在您的顶级 build.gradle 文件中:

项目 -- build.gradle(不是应用 build.gradle

 allprojects {
    repositories {
        // If you're using a version of Gradle lower than 4.1, you must instead use:
        maven {
            url 'https://maven.google.com'
        }
        // An alternative URL is 'https://dl.google.com/dl/android/maven2/'

       jcenter()
    }
}

以前 Android 支持库依赖项是从 Android SDK 管理器下载的。

现在所有新版本都可以从 Google 的 Maven 存储库中获得。 将来所有 android 个库将通过 maven.google.com

分发

因此,通过将以下代码添加到存储库将构建项目。

repositories {
    maven {
        url "https://maven.google.com"
    }
}

我必须将以下内容添加到我的项目级别 build.gradle。然后按钮安装和工作。

allprojects {
    repositories {
        maven {
            url "https://maven.google.com"
        }
        jcenter()
    }
}

一定要放在allprojects下面!我的错误是把它放在 buildscript.

不要这样做:

buildscript {
    repositories {
        jcenter()
         maven {
             url 'https://maven.google.com' //don't put it here
         }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'
    }
}

而是这样做:

allprojects {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com' //put it here
        }
    }
}