ybq / Android-SpinKit

Android loading animations
https://ybq.github.io/Android-SpinKit
MIT License
8.62k stars 1.31k forks source link

XML error #90

Closed Tr-reny closed 2 years ago

Tr-reny commented 2 years ago

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

EngZeeshanAli commented 2 years ago

Did you find any solution?

EngZeeshanAli commented 2 years ago

@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

Tr-reny commented 2 years ago

Thanks for the response. Everything is working Perfectly Now

Tr-reny commented 2 years ago

@EngZeeshanAli Thanks