代码之家  ›  专栏  ›  技术社区  ›  Coonte

错误:(30,18)无法解析:com。安卓支持:design-v7:25.3.1

  •  2
  • Coonte  · 技术社区  · 6 年前

    我已经添加了“maven{url” https://maven.google.com “}”但它不起作用 这是我的身材。gradle文件:

        buildscript {
            repositories {
                jcenter()
            }
            dependencies {
                classpath 'com.android.tools.build:gradle:2.3.3'
                classpath 'com.google.gms:google-services:3.2.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
        }
    

    这是我的另一个版本。格拉德尔:

    apply plugin: 'com.android.application'
    
    android {
        compileSdkVersion 25
        buildToolsVersion "25.0.3"
        defaultConfig {
            applicationId "com.quizapp.conte.quizapp"
            minSdkVersion 21
            targetSdkVersion 25
            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(include: ['*.jar'], dir: 'libs')
        androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
            exclude group: 'com.android.support', module: 'support-annotations'
        })
        compile 'com.google.firebase:firebase-core:10.2.0'
        compile 'com.google.firebase:firebase-database:10.2.0'
        compile 'com.rengwuxian.materialedittext:library:2.1.4'
        compile 'com.android.support:cardview-v7:25.3.1'
        debugCompile 'com.android.support:design-v7:25.3.1'
        compile 'com.android.support:appcompat-v7:25.3.1'
        compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
        testCompile 'junit:junit:4.12'
        compile 'com.google.firebase:firebase-core:11.8.0'
    }
    
    apply plugin: 'com.google.gms.google-services'    
    

    你知道我做错了什么吗? 我什么都试过了,不知道该怎么办。 我最近开始了这个项目,所以除了构建之外,我没有修改其他文件。格拉德尔。 谢谢大家。

    2 回复  |  直到 6 年前
        1
  •  0
  •   Gabriele Mariotti    6 年前

    错误:(30,18)无法解析:com。安卓支持:design-v7:25.3.1

    这是因为这种依赖关系 不存在

    使用

    debugCompile 'com.android.support:design:25.3.1'
    

    而不是

    debugCompile 'com.android.support:design-v7:25.3.1'
    
        2
  •  0
  •   Ali Akbarpour    6 年前

    在新的Gradle版本(4.1+)中,您必须像下面这样使用google存储库

    allprojects {
        repositories {
            google()
    
           }
    }
    

    如果您使用的Gradle版本低于4.1,则必须使用

    allprojects {
            repositories {
             maven {
                url 'https://maven.google.com'
            // An alternative URL is 'https://dl.google.com/dl/android/maven2/'
    
               }
        }