web-dev-qa-db-ja.com

build.gradleにMavenリポジトリを追加します

Android Studioのbuild.gradleにカスタムMavenリポジトリを追加しましたが、依存関係が見つかりません

Mavenリポジトリと依存関係

<repository>
    <id>achartengine</id>
    <name>Public AChartEngine repository</name>
    <url>https://repository-achartengine.forge.cloudbees.com/snapshot/</url>
</repository>

<dependency>
    <groupId>org.achartengine</groupId>
    <artifactId>achartengine</artifactId>
    <version>1.2.0</version>
</dependency>

build.gradle

buildscript {
    repositories {
        mavenCentral()
        maven {
            url "https://repository-achartengine.forge.cloudbees.com/snapshot/"
        }
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:0.6.+'
    }
}
apply plugin: 'Android'

dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
    compile group: 'org.achartengine', name: 'achartengine', version: '1.2.0'
}

Android {
    compileSdkVersion 19
    buildToolsVersion "19"

    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')
    }
}

Android Studioのエラーメッセージ:

A problem occurred configuring root project 'My-MobileAndroid'.
> Failed to notify project evaluation listener.
> Could not resolve all dependencies for configuration ':_DebugCompile'.
  > Could not find org.achartengine:achartengine:1.2.0.
    Required by:
        :My-MobileAndroid:unspecified

Build.gradleに何がありませんか?

106
André Ricardo

buildscriptの外部でリポジトリを定義する必要があります。 buildscript設定ブロックは、ビルドスクリプトのクラスパスのリポジトリと依存関係のみを設定し、アプリケーションは設定しません。

83

後に

apply plugin: 'com.Android.application'

これを追加する必要があります。

  repositories {
        mavenCentral()
        maven {
            url "https://repository-achartengine.forge.cloudbees.com/snapshot/"
        }
    }

@ Benjaminはその理由を説明した。

認証を受けたMavenがある場合は、次のものを使用できます。

repositories {
            mavenCentral()
            maven {
               credentials {
                   username xxx
                   password xxx
               }
               url    'http://mymaven/xxxx/repositories/releases/'
            }
}

順番は重要です。

150

Android Studioユーザー:

グレードを使用したい場合は、 http://search.maven.org/ にアクセスして、mavenリポジトリを検索してください。次に、「最新バージョン」をクリックして、左下の詳細ページに「Gradle」と表示され、そこでそのリンクをコピーしてアプリのbuild.gradleに貼り付けることができます。

enter image description here

31
Micro

次のように、メインのbuild.gradleファイルのbuildscript設定ブロックの外側にMavenリポジトリを追加します。

repositories {
        maven {
            url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases"
        }
    }

次の後に必ず追加してください。

apply plugin: 'com.Android.application'
4

ビルドファイルにrepositoriesを追加する必要があります。 Mavenリポジトリの場合は、リポジトリ名の前にmaven{}を付ける必要があります。

repositories {
  maven { url "http://maven.springframework.org/release" }
  maven { url "http://maven.restlet.org" }
  mavenCentral()
}
3
Marcin Szymczak