You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I tried to plug in compile 'com.wu-man:android-oauth-client:0.4.5' into my dependencies block I got an error saying that the lib depends on libraries but is a jar. Not sure exactly what this means, but after looking around on the internet I got the tip to append @aar to the end, so compile 'com.wu-man:android-oauth-client:0.4.5@aar' which seemed to work.
But then my further com.google.api.client imports no longer worked. I'm assuming that installing the aar version doesn't include dependencies or something? I'm working towards it.
The text was updated successfully, but these errors were encountered:
Thanks loisaidasam for the tip to add @aar - that solved my issue.
With v0.4.5 as a jcenter dependency, I added the dependencies used in the library (with updated versions):
First off, thanks for the lib, it seems like exactly what I need. Onto my issue...
I'm a bit new to gradle, trying to figure out how to use this project.
I see the latest version in the [Maven Repo](http://search.maven.org/#search|gav|1|g:"com.wu-man" AND a:"android-oauth-client") is
0.4.5
, and the samples require a version newer than0.0.3
.When I tried to plug in
compile 'com.wu-man:android-oauth-client:0.4.5'
into my dependencies block I got an error saying that the libdepends on libraries but is a jar
. Not sure exactly what this means, but after looking around on the internet I got the tip to append@aar
to the end, socompile 'com.wu-man:android-oauth-client:0.4.5@aar'
which seemed to work.But then my further
com.google.api.client
imports no longer worked. I'm assuming that installing theaar
version doesn't include dependencies or something? I'm working towards it.The text was updated successfully, but these errors were encountered: