2017-09-04 82 views
0

Previously Asked Question無法安裝Cardview存儲庫

我無法安裝Cardview支持存儲庫。 Gradle認識到我需要它安裝並出現以下錯誤。但我不能點擊安裝庫並進行同步。相反,我可以點擊它,但是我沒有任何反應。

Picture of error 我的應用搖籃文件

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 25 
    buildToolsVersion "25.0.0" 
    defaultConfig { 
     applicationId "pro.bladebeat.projectpsittacosaurus" 
     minSdkVersion 19 
     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(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:25.3.1' 
    compile 'com.android.support:cardview-v7.25.0.0' 
    compile 'com.android.support:recyclerview-v7:25.3.1' 
    compile 'com.android.support.constraint:constraint-layout:1.0.1' 
    compile 'com.android.support:design:25.3.1' 

testCompile '的JUnit:JUnit的:4.12' }

我的項目搖籃文件

// Top-level build file where you can add configuration options common to all sub-projects/modules. 

buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.3.3' 

     // 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 
} 
+3

'compile'c​​om.android.support中的可能的拼寫錯誤:cardview-v7.25.0.0''。使用'compile'c​​om.android.support:cardview-v7:25.0.0''而不是 –

+2

1)絕對是錯字。 2)所有版本的支持庫需要匹配 –

+0

耶穌它的小東西。錯字是問題。 Ajil或Cricket,作爲回答後張貼 –

回答

1

使用compile 'com.android.support:cardview-v7:25.3.1'代替compile 'com.android.support:cardview-v7.25.0.0'

這將解決這個錯字,以及符合您正在使用的支持庫的版本(如cricket_007指出)。

0

去你的Android SDK管理器和然後在SDK Manager中安裝/更新「Android支持庫」。 它會找到依賴關係。

+1

它會一旦錯字是固定的 –