无法找到compile' com.android.support:design-v7:25.0.0'

时间:2016-11-05 05:10:36

标签: android

我试图使用材料设计。但是' com.android.support:design-v7:25.0.0' 会出现以下错误。

apply plugin: 'com.android.application'

    android {
    compileSdkVersion 25
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.example.usaukglu.scrollabletab"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }}

    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:25.0.0'
    compile 'com.android.support:design-v7:25.0.0'

}
  

错误:无法找到:com.android.support:design-v7:25.0.0打开文件。   在“项目结构”对话框中打开

5 个答案:

答案 0 :(得分:3)

用这个替换该行,它肯定会有用。

'com.android.support:design:25.0.0'

答案 1 :(得分:0)

v7中存在一些错误:25.0.0(对于nougat),布局的预览将无法正确显示,因此请尝试使用v7:24.2.1, 但是你需要安装构建工具

compileSdkVersion 24
buildToolsVersion "24.0.2"

compile 'com.android.support:appcompat-v7:24.2.1'

答案 2 :(得分:0)

复制粘贴此代码:

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
    applicationId "com.example.usaukglu.scrollabletab"
    minSdkVersion 15
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:design-v7:25.0.0'

}

你必须改变buildToolsVersion“21.1.2” to buildToolsVersion“25.0.0”

答案 3 :(得分:0)

第1步:打开应用程序的build.gradle文件。

第2步:确保存储库部分包含带有“https://maven.google.com”端点的maven部分。例如:

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

答案 4 :(得分:-1)

apply plugin:'com.android.application'

android {     compileSdkVersion 25     buildToolsVersion“25.0.2”

defaultConfig {
    applicationId "liefsolutions.com.thebestservice"
    minSdkVersion 16
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

}

依赖{     编译fileTree(包括:['* .jar'],dir:'libs')     testCompile'junit:junit:4.12'     编译'buildToolsVersion 24.9.5'     编译'com.android.support:appcompat-v7:25.1.0'     编译'com.android.support:design:25.1.0'

}