Hello:
I am getting this error when I try to build

Error:Execution failed for task 
':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: 
java.util.zip.ZipException: duplicate entry: 
com/orientechnologies/common/collection/OCollection.class

It looks like there is a duplicated OColletion.class, but that seems 
unlikely. Has anyone seen this. Can you help. I am trying to build an app 
for the Grateful Dead
Database. using a Orientdb so I am using the client jars to do this.  

here is my build.gradle file:

pply plugin: 'com.android.application'


android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.sterrett.tony.deadbase"
        minSdkVersion 17
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 
'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.10'
    //compile 'com.android.support:multidex:1.0.1'


   compile ('com.android.support:multidex:1.0.0')
            {
                exclude group: 'org.hamcrest', module: 'hamcrest-core'
            }

    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'

    compile 'com.orientechnologies:orient-commons:2.0-M1'
    compile 'com.orientechnologies:orientdb-core:2.2.0-beta'
    compile 'com.orientechnologies:orientdb-client:2.2.0-beta'
    compile 'com.orientechnologies:orientdb-enterprise:2.2.0-beta'

}


-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to