1

これは Android Studio を使用した最初のプロジェクトです。Android Studio (バージョン 0.8.1) のプロジェクトに Cardslib ライブラリを含めようとしています。最初に、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 に次の行を追加します

compile files('libs/library-1.7.3-sources.jar')`

エラーなしでプロジェクトを同期しますが、単純なカードを作成することはできません。つまり、まだ機能していません。

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

スクリプトにこのブロックを追加して、libs でレポを見つけることができる場所を gradle に伝えます。

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 に答える