Failed to resolve Falcon
stephanepechard opened this issue · 3 comments
stephanepechard commented
Hi,
After adding compile 'com.jraska:falcon:1.0.1'
in my client-android (on line 62, but not visible here as it is not commited), I get a gradle error: Failed to resolve: com.jraska:falcon:1.0.1
.
Do I miss something in the integration?
Thanks
jraska commented
Hi,
I think it is because Falcon is not on mavenCentral()
, but on jcenter()
. You can fix this with adding jcenter()
into your repositories
closure like
repositories {
mavenCentral()
jcenter()
}
stephanepechard commented
Thanks, it works now. Maybe you can add this to the documentation, to avoid other people to make the same mistake.
Thanks
jraska commented
No problem.
Thanks for using the library ;)