无法解决:com.android.support:support-fragment:26.1.0

时间:2017-09-19 05:32:36

标签: java android android-support-library

通过此Question Link标记我的问题,但问题与此问题不相似。原因是 - “com.android.support:support-fragment:26.1.0”依赖项未添加到我的项目中。这个问题有不同的原因和不同的错误。 Question Link的答案也不适合这个问题。

我在我的电脑中并排使用 Android Studio 2.3.3 Android Studio 3.0测试版6 。在我的项目中,我得到的错误如下图所示 -

enter image description here

我正在使用依赖项 -

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:26.+'
    compile 'com.android.support:design:26.+'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.android.support:recyclerview-v7:26.+'
    compile 'com.android.support:cardview-v7:26.+'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.facebook.android:account-kit-sdk:4.+'
    compile 'com.karumi:dexter:4.1.1'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.daimajia.slider:library:1.1.5@aar'
    compile 'fr.avianey.com.viewpagerindicator:library:2.4.1.1@aar'
    compile 'com.wdullaer:materialdatetimepicker:2.3.0'
    compile 'com.jakewharton:butterknife:8.7.0'
    compile 'com.flaviofaria:kenburnsview:1.0.7'
    compile 'com.google.firebase:firebase-core:11.2.0'
    compile 'com.google.firebase:firebase-database:11.2.0'
    compile 'com.google.android.gms:play-services:11.2.0'
    compile 'com.android.support:multidex:1.0.1'
    testCompile 'junit:junit:4.12'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0'
}
apply plugin: 'com.google.gms.google-services'

并使用 -

compileSdkVersion 26 buildToolsVersion "26.0.0"

gradle文件中的

我使用此代码 -

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'
        classpath 'com.google.gms:google-services:3.1.0'
        classpath 'com.google.firebase:firebase-plugins:1.0.4'
    }
}

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

task clean(type: Delete) {
    delete rootProject.buildDir
}

我很难找到这个问题解决方案。

1 个答案:

答案 0 :(得分:8)

您必须在maven { url 'https://maven.google.com' }部分添加repositories

buildscript {
repositories {
    jcenter()
    maven { url 'https://maven.google.com' }
}
dependencies {
    classpath 'com.android.tools.build:gradle:2.3.3'
    classpath 'com.google.gms:google-services:3.0.0'
 }
}