Search code examples
androidandroid-librarycircularreveal

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.


Solution

  • 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?