2016-10-18 40 views
0

我試圖從https://github.com/ZieIony/MaterialRecents進口約材質設計Github的庫,但我面對這種類型的錯誤:如何導入Materialrecent設計Android應用

("Error:Dependency com.github.ZieIony:MaterialRecents:d2aec46f48 on project app resolves to an APK archive which is not supported as a compilation dependency. File: C:\Users\Talha\.gradle\caches\modules-2\files-2.1\com.github.ZieIony\MaterialRecents\d2aec46f48\494f96d345471f38b6f3f4c1c42347a2b42f8303\MaterialRecents-d2aec46f48.apk") 

我的搖籃是

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 24 
    buildToolsVersion "24.0.1" 
    defaultConfig { 
     applicationId "com.talha.myrecentdesign" 
     minSdkVersion 14 
     targetSdkVersion 24 
     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.github.ZieIony:MaterialRecents:d2aec46f48' 
    compile 'com.android.support:appcompat-v7:24.2.1' 
    testCompile 'junit:junit:4.12' 

    compile 'com.nineoldandroids:library:2.4.0' 
} 

and

// 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.2.1' 

      // NOTE: Do not place your application dependencies here; they belong 
      // in the individual module build.gradle files 
     } 
    } 

    allprojects { 
     repositories { 
      jcenter() 
      maven { url "https://jitpack.io" } 
      } 

    } 

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

我從許多網站搜索,但沒有找到確切的解決方案。請幫幫我。

+0

中添加的gradle編譯 'com.android.support:design:22.2.0' –

+0

再此錯誤#Bensal依賴 –

回答

0

您正在使用的庫使用CardView,它是android支持設計庫的一部分,因此您必須爲此添加依賴項。

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