无法解决Android Studio中的所有依赖关系 [英] Unable to resolve all dependencies in android studio

查看:281
本文介绍了无法解决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. 我也尝试过离线离线方法,但仍然无法正常工作.
  3. 我尝试添加无法使用的GOOGLE MAVEN REPO储存库.
  4. 我尝试了此处列出的所有这些方法:-无法解决:com.android.support:cardview-v7:26.0.0 android
  1. I have tried many methods but, it is not syncing gradle.
  2. I have tried GRADLE OFFLINE METHOD TOO, BUT THAT ALSO DIDN'T WORK.
  3. I have tried adding GOOGLE MAVEN REPO REPOSITORY BUT THAT DIDN'T WORK.
  4. I have tried all these methods listed here :- Failed to resolve: com.android.support:cardview-v7:26.0.0 android

屏幕截图显示了同步卡住的地方

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

I am new to android studio plz omit mistakes.

应用程序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
    }

推荐答案

我认为您缺少Google Maven存储库.

I think that you are missing the Google maven repo.

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

您有此处的完整文档.

这篇关于无法解决Android Studio中的所有依赖关系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆