Android-Image-Slider
Android-Image-Slider copied to clipboard
Could not HEAD 'https://jitpack.io/com/github/smarteist/autoimageslider/1.4.0/autoimageslider-1.4.0.pom'. Received status code 401 from server: Unauthorized.
Describe the bug Could not HEAD 'https://jitpack.io/com/github/smarteist/autoimageslider/1.4.0/autoimageslider-1.4.0.pom'. Received status code 401 from server: Unauthorized.
To Reproduce No need to reproduce getting it directly now
Screenshots If applicable, add screenshots to help explain your problem.
Smartphone (please complete the following information):
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
Issue I am getting:
'https://www.jitpack.io/com/github/smarteist/autoimageslider/1.4.0/autoimageslider-1.4.0.pom'. Received status code 401 from server: Unauthorized
Disable Gradle 'offline mode' and sync projec
t
Getting the same issue
I am getting this issue when I remove jcenter()
I am getting this issue when I remove jcenter()
same here
I think jcenter() is necessary so add it , it will work ....!
I am getting the same error after I have removed jcenter()
You have us jcenter() along with mavenCentral(). just like below👇👇
dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() jcenter() mavenCentral()
maven {
url 'https://jitpack.io'
}
}
}
I have also got this error and i have done one thing to solve the problem, go to settings.gradle and after google() added jcenter() . problem solved, if you have fatching this error you can add jcenter() like below
pluginManagement { repositories { gradlePluginPortal() google() jcenter() mavenCentral() maven { url 'https://jitpack.io' } } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() jcenter() mavenCentral() maven { url "https://jitpack.io" } } }