web-dev-qa-db-ja.com

Gradleは、Android Studioで依存関係を解決できません

Android St​​udio 1.1(OS X)のリモートリポジトリ(jcenter)から依存関係を追加すると、Gradleの同期時に次のエラーが発生します。

Error:(26, 13) Failed to resolve: <packagename:version>

私のアプリのbuild.gradleは次のとおりです。適用プラグイン: 'com.Android.application'

Android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "nl.timmevandermeer.cargoapp"
    minSdkVersion 19
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"
}
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
     compile fileTree(dir: 'libs', include: ['*.jar'])
     compile 'com.Android.support:appcompat-v7:21.0.3'
     compile 'com.Android.support:support-v4:21.0.3'
     compile 'com.google.Android.gms:play-services:6.5.87'
     compile 'org.json:json:20141113'
}

リポジトリ(jcenter()、mavenCentral()など)の変更、Android St​​udio、JDK(7および8)の再インストール、GradleバージョンとAndroid SDKバージョンの変更、なしそのうち働いた。 ./gradlew buildを実行すると、次の結果が得られます。

Could not resolve com.Android.tools.build:gradle:1.1.0.
13:48:04.914 [ERROR] [org.gradle.BuildExceptionReporter]      Required by:
13:48:04.915 [ERROR] [org.gradle.BuildExceptionReporter]          :CargoApp:unspecified
13:48:04.932 [ERROR] [org.gradle.BuildExceptionReporter] >
 org.slf4j.spi.LocationAwareLogger.log(Lorg/slf4j/Marker;Ljava/lang/String;ILjava/lang/String;[Ljava/lang/Object;Ljava/lang/Throwable;)V

これは、Android St​​udioの代わりにIntellij Ideaを使用しようとした場合など、他の場合にも発生するエラーです。ただし、依存関係なしでアプリを実行しても機能します。

22

ここでも同様の問題があり、[ビルド]-> [プロジェクトのクリーン]を選択すると、「認証されていないピア」エラーが発生します。

https://jcenter.bintray.com/ 」の代わりに「 http://jcenter.bintray.com/ 」を使用して解決しました

repositories {
    jcenter({url "http://jcenter.bintray.com/"})
}

この作業があなたのために願っています。

26
Ray Lee

私はgithubのライブラリで同様の問題を抱えていました。

dependencies {
    compile 'com.github.chrisbanes.photoview:library:1.2.4'
}

この回避策は機能しているように見えますが、特定のバージョンを取得せず、Android Studio警告:

dependencies {
    compile 'com.github.chrisbanes.photoview:library:+'
}
14
kip2

かなり遅いですが、おそらくあなたのgradleはオフラインモードで動作します。 [ファイル]-> [設定]-> [Gradle]に移動し、オフラインモードをオフにします。その後、gradleを更新してみてください、それは動作するはずです

3
Klitos G.

build.gradle

buildscript {
    repositories {
        jcenter()
    }

    dependencies {
        classpath 'com.Android.tools.build:gradle:1.1.3'
    }
}

アプリbuild.gradle

apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "nl.timmevandermeer.cargoapp"
        minSdkVersion 19
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
     // compile fileTree(dir: 'libs', include: ['*.jar']) // <-- use gradle depedencies
     compile 'com.Android.support:appcompat-v7:22.0.0' // <-- brings in v4
    // compile 'com.google.Android.gms:play-services:7.0.0' // <-- will cause MultiDex exception, you need to choose which ones you want
    // compile 'org.json:json:20141113' // <-- Android comes with org.json
}

マルチデックスの問題:

compile 'com.google.Android.gms:play-services:7.0.0'は大きすぎるため、直接使用しないでください。ここで必要なモジュールを選択してください: http://developer.Android.com/google/play-services/setup.html

2
Jared Burrows

企業のファイアウォールの内側にいます。 http設定は設定しましたが、https設定は設定していません。そこで、次をgradle.propertiesファイルに追加しました。

systemProp.https.proxyPassword=...
systemProp.https.proxyHost=...
systemProp.https.nonProxyHosts=...
systemProp.https.proxyUser=...
systemProp.https.proxyPort=...
2
Tony D

私の場合、これをbuild.gradle(module:app)に追加しました:

compile 'com.github.glomadrian:velocimeterlibrary:1.1@aar' 

ただし、今日はエラーが発生しました。私の解決策は代わりにこれを使用することです:

compile 'com.github.glomadrian:velocimeterlibrary:+'
0
Tri

UBUNTU-14.04でテスト済み、

>delete .androidstudio1.2 , .gradle , .Android  , Android studio project from home directory 
> Launch using studio.sh
>close the dialogue letting you choose new or old setting , just close it using that "x " button 
> then it will set up an virtual nexus 5 
>then there will be two errors saying problem about "sdk" and "gradle "
> Caution : choose the appropriate sdk version by clicking on the link given by where the problem is shown .
> close Android studio 
> reopen Android studio 
> then you will be thrown a possible  error with jdk not found .
>go to file -> project structure 
> give the path to jdk , in my case its "usr/local/Java/jdk..."
>close Android studio and open again , the gradle might work well after this .
0
erluxman