web-dev-qa-db-ja.com

com.Android.build.transform.api.TransformException with Android google play services

Google Plusをアプリケーションに統合しようとしていますが、次のエラーが表示されます。以下は例外とgradleです

エラー:タスク ':app:transformClassesWithDexForDebug'の実行に失敗しました。

com.Android.build.transform.api.TransformException:com.Android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:Process 'コマンド' C:\ Program Files\Java\jdk1.7.0_79\bin\Java.exe ''がゼロ以外の終了値1で終了しました

app build.gradle

apply plugin: 'com.Android.application'
apply plugin: 'com.google.gms.google-services'

Android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "xxx.com.xxxx"
        multiDexEnabled true
        minSdkVersion 15
        targetSdkVersion 23
        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:23.0.1'
    //depend-materialcalendar
    compile 'com.prolificinteractive:material-calendarview:0.8.1'
    compile 'com.Android.support:gridlayout-v7:23.0.1'
    compile 'com.Android.support:cardview-v7:23.0.1'
    compile 'com.melnykov:floatingactionbutton:1.3.0'
    //depend-cometchat
    compile 'com.yalantis:contextmenu:1.0.4'
    compile 'com.google.code.gson:gson:2.3'
    compile files('libs/appcompat_v7.jar')
    compile files('libs/cometchat-sdk.jar')
    compile files('libs/jsoup-1.7.3.jar')
    compile files('libs/picasso-2.5.2.jar')
    compile 'com.google.Android.gms:play-services:8.1.0'
    compile 'com.google.Android.gms:play-services-base:8.1.0'
    compile 'com.google.Android.gms:play-services-maps:8.1.0'
    compile files('libs/volley.jar')
    compile files('libs/PayPalAndroidSDK.jar')
    compile files('libs/gcm.jar')
    compile 'com.soundcloud.Android:android-crop:1.0.1@aar'
    compile 'com.facebook.Android:facebook-Android-sdk:4.6.0'
    compile 'com.Android.support:multidex:1.0.0'
    compile 'com.google.Android.gms:play-services-plus:8.1.0'
    compile 'com.google.Android.gms:play-services-identity:8.1.0'

}

プロジェクトbuild.gradle

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:1.3.0'
        classpath 'com.google.gms:google-services:1.4.0-beta3'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}
7
srinu
  1. プロジェクトをクリーンアップしてから再構築してみてください。

  2. アプリにmultiDexEnabledtrueを追加してみてくださいbuild.gradleファイル。

    defaultConfig {
        multiDexEnabled true
    }
    
14
vab

これをApplicationクラスに追加しました:

 @Override
protected void attachBaseContext(Context base) {
    super.attachBaseContext(base);
    MultiDex.install(this);
}

私のアプリのbuild.gradeファイル:

 defaultConfig {
    applicationId "com.example.Android.exampleapp"
    minSdkVersion 15
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
    multiDexEnabled true

}

そしてこれを依存関係として追加しました:

     compile 'com.Android.support:multidex:1.0.0'

これで私の問題は解決しました。ありがとう

4

Android Gradleプラグインバージョンを1.3.0から1.5.0に移動したときに、現在のプロジェクトで同じ問題が発生しました。

エラーは、Javaがエラーコード2を返したことを除いて、OPのエラーとほぼ同じでした。

最終的に、アプリの2つの異なるモジュールに同じjarファイルが含まれていることが判明した場合。

バージョン1.3.0では、これを問題なく処理できました。バージョン1.5.0では、jarファイルを、jarファイルの単一コピーを含む別のモジュールの依存関係に置き換える必要がありました。

3
Nantoka

これらの行をgradleに追加してみてください

dexOptions {
    javaMaxHeapSize "4g"
}
0
Ankur1994a

追加してみました

   multiDexEnabled true

しかし、動作しませんでした。次に、ビルドバージョンを23.0.2からに変更しました

  buildToolsVersion "23.0.3"

その後、それは動作します。それがあなたを助けるかもしれないことを願っています。

0
Milon