2

既存の Android アプリにApplozicチャットを実装しようとしています。私はすでに他のクラスのサーバー通信に MQTT を使用しており、正常に動作しています。しかし、build.gradle から Applozic ライブラリをダウンロードした後、アプリケーションのコンパイル中にエラーが発生します。Applozic も同じ MQTT テクノロジーを使用しているようです。エラーは言う:

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/android/gms/internal/zznp.class
:app:transformClassesWithJarMergingForDebug FAILED

build.gradle ファイル:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.xxxxx.xxxx.xxx"
        minSdkVersion 17
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        // Enabling multidex support.
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/ECLIPSE_.SF'
        exclude 'META-INF/ECLIPSE_.RSA'
    }
}

/*allprojects {
    repositories {
        jcenter()
        maven {
            url "https://repo.eclipse.org/content/repositories/paho-releases/"
        }

        maven { url "https://jitpack.io" }
    }
}*/

dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
    //testCompile 'junit:junit:4.12'
    compile 'com.applozic.communication.uiwidget:mobicomkitui:4.62'
    compile 'com.android.support:support-v4:23.0.1'
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.google.android.gms:play-services:7.8.0'
    compile 'com.wdullaer:materialdatetimepicker:2.3.0'
    compile 'com.android.volley:volley:1.0.+'
    compile 'com.vlonjatg.android:app-tour:1.0'
    compile 'com.mukesh:permissions:1.0.2'

    compile 'com.github.JakeWharton:ViewPagerIndicator:2.4.1'



    /*compile "org.eclipse.paho:org.eclipse.paho.client.mqttv3:${rootProject.ext.clientVersion}"
    compile(project(':org.eclipse.paho.android.service')) {
        transitive = true
    }*/
}

task publishAPK(type: Copy) {
    from file("${project.buildDir}/outputs/apk/" + rootProject.ext.sampleArchivesBaseName + "-debug.apk");
    into '/shared/technology/paho/Android/' + rootProject.ext.sampleVersion + '/debug/';
}


configurations.compile.exclude module: 'org.eclipse.paho.client.mqttv3'
task debug << {
    configurations.compile.each { println it}
}

エラーが表示される理由がわかりません。競合を引き起こしているライブラリはどれですか? 問題を解決するには、何を変更する必要がありますか?

4

2 に答える 2

0

Applozic android SDK は Google Play サービス v9.0.2 を使用しています。v9.0.2 に変更して確認できますか

  compile 'com.google.android.gms:play-services:9.0.2'

65k を超える場合は、このリンクを確認してください How to enable multidexing with new Android Multidex support library

于 2016-10-22T08:02:31.543 に答える