Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to resolve: com.nineoldandroids:library:2.4.0+ #9

Closed
sudarshaana opened this issue Jan 12, 2016 · 8 comments
Closed

Failed to resolve: com.nineoldandroids:library:2.4.0+ #9

sudarshaana opened this issue Jan 12, 2016 · 8 comments

Comments

@sudarshaana
Copy link

I am using
compile 'konifar:fab-transformation:1.0.0'
But suddenly it is showing "Failed to resolve: com.nineoldandroids:library:2.4.0+"

As konifar:fab-transformation:1.0.0 is using "com.nineoldandroids:library:2.4.0+" ; what to do now?

@waj0
Copy link

waj0 commented Jan 12, 2016

Changing '2.4.0+' to '2.4.0' in build.gradle:84 will help. You can build library with this change by yourself and add to your app, if you can't wait for official release. I just did it myself :-)

source

@sudarshaana
Copy link
Author

I didn't use "com.nineoldandroids:library:2.4.0+". So where to change '2.4.0+' to '2.4.0'?

@iballan
Copy link

iballan commented Jan 15, 2016

@sudarshaana he is talking about the library's dependencies. you have to download the library code and recompile it yourself

@iballan
Copy link

iballan commented Jan 15, 2016

BTW, I got the same problem after i upgraded my Android Studio

@iballan
Copy link

iballan commented Jan 16, 2016

@konifar
I got the solution: Excluding nineoldandroids from the project, and add it to your project like this

compile 'com.nineoldandroids:library:2.4.0'
compile ('konifar:fab-transformation:1.0.0') {
        exclude group: 'com.nineoldandroids', module: 'library'
}

worked for me

@sudarshaana
Copy link
Author

@iballan
Thanks.
Thats also works for me.

@rsv355
Copy link

rsv355 commented Jan 22, 2016

Thank's alot buddy....
Works for me as well

@iballan
Copy link

iballan commented Jan 22, 2016

you are all welcome :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants