android-oauth-client icon indicating copy to clipboard operation
android-oauth-client copied to clipboard

can't use in Android Studio 1.2.1.1

Open axd1967 opened this issue 10 years ago • 1 comments

the compile dependency 0.0.3 is totally outdated, and I cannot import library/module as a module into another project.

and when attempting to build using the library AAR, I get the dreaded com.android.dex.DexException: Multiple dex files define Lorg/codehaus/jackson/Base64Variant;

axd1967 avatar May 22 '15 09:05 axd1967

solved dex issue by adding following exclude:

compile('com.google.http-client:google-http-client-jackson:1.15.0-rc'){
    exclude group: 'org.codehaus.jackson'
}

axd1967 avatar May 26 '15 09:05 axd1967