java - google calendar libraries conflict with Evernote SDK on Android -


i have created google calendar sample application following android quickstart. app runs here. want integrate evernote sdk.

here build.gradle dependences

dependencies {     compile filetree(dir: 'libs', include: ['*.jar'])     compile 'com.android.support:appcompat-v7:22.2.0'     compile 'com.google.android.gms:play-services:7.3.0'     compile 'com.google.api-client:google-api-client:1.20.0'     compile 'com.google.api-client:google-api-client-android:1.20.0'     compile 'com.google.api-client:google-api-client-gson:1.20.0'     compile 'com.google.apis:google-api-services-calendar:v3-rev125-1.20.0'     compile 'com.evernote:android-sdk:2.0.0-rc2' } 

when try run app error appears:

error:execution failed task ':app:dexdebug'. com.android.ide.common.process.processexception: org.gradle.process.internal.execexception: process 'command 'c:\program files\java\jdk1.7.0_75\bin\java.exe'' finished non-zero exit value 2

any ?

i solved exception applying "multidex"


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -