无法解决android studio中的所有依赖项

时间:2017-11-02 10:43:37

标签: android android-studio

我收到这些错误: -

错误:无法解析':app @ debug / compileClasspath'的依赖关系:无法解析com.android.support:appcompat-v7:27.0.0。

错误:无法解析':app @ debugAndroidTest / compileClasspath'的依赖关系:无法解析com.android.support.test:runner:1.0.1。

错误:无法解析':app @ releaseUnitTest / compileClasspath'的依赖关系:无法解析junit:junit:4.12。

错误:无法解析':app @ debugAndroidTest / compileClasspath'的依赖关系:无法解析com.android.support.test.espresso:espresso-core:3.0.1。

  1. 我尝试了很多方法但是,它没有同步gradle。
  2. 我尝试过GRADLE离线方法,但也没有工作。
  3. 我尝试添加GOOGLE MAVEN REPO REPOSITORY但是没有用。
  4. 我已尝试过此处列出的所有这些方法: - Failed to resolve: com.android.support:cardview-v7:26.0.0 android
  5. 同步停留的屏幕截图

    SYNC STUCK AT THIS 1

    SYNC STUCK AT THIS 2

    SYNC STUCK AT THIS 3

    SYNC STUCK AT THIS 4

    我是android studio plz的新手,忽略了错误。

    应用程序build.gradle文件

        apply plugin: 'com.android.application'
    
    android {
        compileSdkVersion 27
        buildToolsVersion "26.0.2"
        defaultConfig {
            applicationId "com.example.firstapp.myapplication"
            minSdkVersion 16
            targetSdkVersion 27
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:27.0.0'
        implementation 'com.android.support.constraint:constraint-layout:1.0.2'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.1'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    }
    

    应用程序build.gradle文件

        // Top-level build file where you can add configuration options common to all sub-projects/modules.
    
        buildscript {
    
            repositories {
                google()
                jcenter()
            }
            dependencies {
                classpath 'com.android.tools.build:gradle:3.0.0'
    
    
                // NOTE: Do not place your application dependencies here; they belong
                // in the individual module build.gradle files
            }
        }
    
        allprojects {
        repositories {
            jcenter()
            maven {
                url "https://maven.google.com"
            }
        }
    }
    
        task clean(type: Delete) {
            delete rootProject.buildDir
        }
    

2 个答案:

答案 0 :(得分:4)

我认为您错过了Google maven repo。

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

您拥有full document here

答案 1 :(得分:0)

更改compile 'com.android.support:appcompat-v7:26.1.0'

到此

implementation 'com.android.support:support-compat:27.0.0'

您需要使用gradle版本3.0.0来使用implementation,在项目级别 build.gradle上您应该更改

buildscript {
    repositories {
        ...
        // You need to add the following repository to download the
        // new plugin.
        google()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'
    }
}