romandanylyk / PageIndicatorView

An page indicator for Android ViewPager
4.63k stars 564 forks source link

Failed to resolve: com.romandanylyk:pageindicatorview:1.0.3 #150

Open Namratha1083 opened 2 months ago

Namratha1083 commented 2 months ago

Failed to resolve: com.romandanylyk:pageindicatorview:1.0.3

sampada3005 commented 2 months ago

facing same issue

yjtyujie commented 2 months ago

See #141

People are noticing it now because jcenter is down for good this time, since 15th Aug https://jfrog.com/blog/jcenter-sunset/

stevenbenitez commented 3 weeks ago

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")