1

这是我第一个使用 Android Studio 的项目,所以如果你觉得这个问题很幼稚,请原谅我。我正在尝试将 Cardslib 库包含到我在 Android Studio(版本 0.8.1)中的项目中。最初我尝试通过在 build.gradle 中添加以下行来包含它:

compile 'com.github.gabrielemariotti.cards:library:1.7.3'

但它返回了以下错误(同步时)

Error:Failed to find: com.github.gabrielemariotti.cards:library:1.7.3

我试图通过包含 jar 文件,

  1. 从 maven 存储库下载它
  2. 将 jar 文件添加到 libs 文件夹。
  3. 在 build.gradle 中添加以下行

编译文件('libs/library-1.7.3-sources.jar')`

虽然 gradle 项目同步没有任何错误,但我无法创建简单的卡片,即仍然不适合我。

我希望第一种方法能够工作,因为 Android Studio 会处理所有事情,但我想我做错了什么。

[编辑] - 添加 build.gradle 代码

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.12.+'
    }
}
apply plugin: 'android'

dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
    compile 'com.github.gabrielemariotti.cards:library:1.7.3'
}

android {
    compileSdkVersion 19
    buildToolsVersion '20.0.0'

    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            resources.srcDirs = ['src']
            aidl.srcDirs = ['src']
            renderscript.srcDirs = ['src']
            res.srcDirs = ['res']
            assets.srcDirs = ['assets']
        }

        // Move the tests to tests/java, tests/res, etc...
        instrumentTest.setRoot('tests')

        // Move the build types to build-types/<type>
        // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
        // This moves them out of them default location under src/<type>/... which would
        // conflict with src/ being used by the main source set.
        // Adding new build types or product flavors should be accompanied
        // by a similar customization.
        debug.setRoot('build-types/debug')
        release.setRoot('build-types/release')
    }
}
4

1 回答 1

3

在你的脚本中添加这个块来告诉 gradle 它可以在哪里找到带有库的 repo。

repositories {
    mavenCentral()
}

所以你的脚本会是这样的:

   ....... 
   apply plugin: 'android'

       repositories {
            mavenCentral()
        }


    dependencies {
        compile fileTree(dir: 'libs', include: '*.jar')
        compile 'com.github.gabrielemariotti.cards:library:1.7.3'
    }
....... 
于 2014-07-08T08:36:17.787 回答