web-dev-qa-db-ja.com

エラー:パッケージ名「com.google.Android.gms」の複数のライブラリ

私はAndroid Studio 0.8.2を使用しており、Android 4.1およびAndroid Wear 4.4。I Google Play開発者サービスと統合する必要があります。

Android Studioはここにあります: https://developer.Android.com/google/play-servicesのGoogle Play開発者サービス設定ページをフォローしようとしています/setup.html

ステップ2では、この依存関係を追加するように指示されています。

compile 'com.google.Android.gms:play-services:5.0.77'

ただし、同期時に次のメッセージが表示されます。

Error:Execution failed for task ':mobile:processDebugResources'.
> Error: more than one library with package name 'com.google.Android.gms'
  You can temporarily disable this error with Android.enforceUniquePackageName=false
  However, this is temporary and will be enforced in 1.0

これがモバイルモジュール内の完全なbuild.gradleファイルです。

apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 20
    buildToolsVersion "20.0.0"

    defaultConfig {
        applicationId "com.OptimizedPrime.locationweartabs"
        minSdkVersion 16
        targetSdkVersion 20
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    wearApp project(':wear')
    compile 'com.google.Android.gms:play-services-wearable:+'
    compile 'com.google.Android.gms:play-services:5.0.77'
    // You must install or update the Support Repository through the SDK manager to use this dependency.
    compile 'com.Android.support:support-v13:19.+'
}

推奨される依存関係は、ウェアラブルコンパイルステートメントと競合しているようです。ウェアラブルサポートを維持したいのですが、同時にGoogle Play開発者サービスも必要です。どうすれば修正できますか?

12
Gerard

あなたが持っている場合:

compile 'com.google.Android.gms:play-services-wearable:5.0.77'

その後、あなたは必要ありません:

compile 'com.google.Android.gms:play-services:5.0.77'

ウェアラブルでないものを削除します。

22
Scott Barta

おそらくあなたが使っているのは、異なるバージョンの異なるタイプの依存関係です:

com.google.Android.gms:play-services -neededDependencyversion

例:以下のように両方の依存関係を使用している場合:

compile 'com.google.Android.gms:play-services-gcm:7.8.0'
compile 'com.google.Android.gms:play-services-ads:8.3.0'

異なる依存関係に同じバージョンを使用してみてください。

compile 'com.google.Android.gms:play-services-gcm:7.8.0'
compile 'com.google.Android.gms:play-services-ads:7.8.0'

よろしくお願いいたします。

6
Mihir Trivedi