android-oauth-client
android-oauth-client copied to clipboard
can't use in Android Studio 1.2.1.1
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;
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'
}