ybq/Android-SpinKit

XML error

Tr-reny opened this issue · 4 comments

After syncing Dependency, the Build is successful, and Yet the XML code won't recognize the dependency.
Attached is the error on my XML
Screenshot at 2022-08-27 12-06-46

Did you find any solution?

@Tr-reny just add maven { url 'https://jitpack.io' }
Same like this in settings.gradle

dependencyResolutionManagement {
   repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}

And this will start working reason is that this library is hosted on jitpack

Thanks for the response.
Everything is working Perfectly Now