Android-Image-Slider icon indicating copy to clipboard operation
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.

Open YogeshJ241 opened this issue 3 years ago • 7 comments

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 Capture t

YogeshJ241 avatar Sep 24 '21 12:09 YogeshJ241

Getting the same issue

priyamprakash avatar Nov 08 '21 18:11 priyamprakash

I am getting this issue when I remove jcenter()

sayedtalha124 avatar Nov 09 '21 09:11 sayedtalha124

I am getting this issue when I remove jcenter()

same here

Titansingh avatar Jan 03 '22 07:01 Titansingh

I think jcenter() is necessary so add it , it will work ....!

ShyamSutar avatar Mar 07 '22 16:03 ShyamSutar

I am getting the same error after I have removed jcenter()

Umang17 avatar Jun 05 '22 12:06 Umang17

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'
    }
}

}

Dhanrajsinh002 avatar Jun 10 '22 08:06 Dhanrajsinh002

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

Syed-Bipul-Rahman avatar May 24 '23 10:05 Syed-Bipul-Rahman