无法解决:com.android.support:support-v13:26

时间:2017-09-22 09:04:43

标签: java android gradle android-support-library

在我将TabLayout添加到.xml布局之前,所有内容都已正常运行并正常编译。在我添加它之后,项目只是拒绝编译,并且我的所有.xml文件都停止显示任何内容,并且我的所有库导入都说"无法解析符号..."。

我不明白为什么我之前编译得很好的所有进口产品现在只是说:

  

无法解决:com.android.support:support-v13:26

     

无法解决:com.android.support:appcompat-v7:26

并且没有提供任何按钮(例如"安装存储库和同步项目")是可点击的。

请看看gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"
    defaultConfig {
        applicationId "com.example.prett.myapplication"
        minSdkVersion 22
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
}

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.android.support:appcompat-v7:26'
    compile 'com.android.support:support-v13:26'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:design:25.3.1'
}

我已尝试过"使缓存无效/重启",但它没有任何影响。

P.S。

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

  

此支持库不应使用与compileSdkVersion(26)不同的版本(25)

这是否也会导致问题?

3 个答案:

答案 0 :(得分:3)

如果您的编译SDK版本是26,则android支持依赖版本应为26.x.x

设置您的gradle依赖项如下:

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.android.support:appcompat-v7:26.0.1'
    compile 'com.android.support:support-v13:26.0.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:design:26.0.1'
}

如果仍然遇到编译错误,请将google maven存储库添加到Project Gradle文件:

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

答案 1 :(得分:0)

在gradle中尝试以下依赖项并重建项目;

compile 'com.android.support:appcompat-v7:26.0.1'
compile 'com.android.support:support-v13:26.0.1'
compile 'com.android.support:design:26.0.1'

答案 2 :(得分:0)

此支持库不应使用与compileSdkVersion(26)不同的版本(25)

表示您必须从25版到26版更新支持库,问题才能得到解决。