无法在Android Studio中使用github库

时间:2015-02-01 12:32:24

标签: android gradle android-studio android-gradle

我想在Android Studio中的项目中使用this library,正如读者所述,我在Android Studio中创建了新项目,并在app文件夹中的build.gradle文件中添加了依赖项:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

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

repositories {
   mavenCentral()
} 

dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
   compile 'com.android.support:appcompat-v7:21.0.3'
   compile 'com.lorentzos.swipecards:library:1.0.8@aar'
}

然后当我同步时,我开始收到此错误:

Failed to find file

我搜索了谷歌和堆栈溢出但无法找到任何合适的解决方案。

1 个答案:

答案 0 :(得分:0)

我使用了你的“build.gradle”文件,它对我来说很好(有和没有“aar”)。可能是缓存有问题。尝试“文件 - >使缓存无效/重新启动”)。生成更多错误消息详细信息的另一种方法是尝试从命令行构建模块并获取详细输出

gradle -info compileDebugSources

你会得到很多输出,可以给你一个关于出了什么问题的提示