Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed to resolve: com.github.ozodrukh:CircularReveal:1.1.0

I'm trying to import this library (https://github.com/ozodrukh/CircularReveal) to my project by writing: compile 'com.github.ozodrukh:CircularReveal:1.1.0@aar'

But I get this error :

Error:(25, 13) Failed to resolve: com.github.ozodrukh:CircularReveal:1.1.0
<a href="openFile">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>

I dont understand why since I have succeded in importing other libraries this way.

like image 770
Colum Srečko Avatar asked Jul 02 '15 08:07

Colum Srečko


1 Answers

On the Github page of the repository:

This library is not released in Maven Central, but instead you can use JitPack. Add remote maven url:

repositories {
        maven {
            url "https://jitpack.io"
        }
}

Might it be possible you forget to add this to your gradle file?

like image 158
TmKVU Avatar answered Sep 17 '22 23:09

TmKVU