Open Namratha1083 opened 2 months ago
facing same issue
See #141
People are noticing it now because jcenter is down for good this time, since 15th Aug https://jfrog.com/blog/jcenter-sunset/
JCenter was shut down. The dependency is available on JitPack though.
Remove jcenter from your repositories block and make sure you have the following in your settings.gradle.kts:
dependencyResolutionManagement {
...
repositories {
...
maven {
url = uri("https://jitpack.io")
}
}
}
Then, update your dependency from:
implementation("com.romandanylyk:pageindicatorview:1.0.1")
to
implementation("com.github.romandanylyk:PageIndicatorView:v1.0.1")
Failed to resolve: com.romandanylyk:pageindicatorview:1.0.3