Fast-Android-Networking icon indicating copy to clipboard operation
Fast-Android-Networking copied to clipboard

jcenter() library does not working

Open voobl opened this issue 3 years ago • 3 comments

hello

Failed to resolve: com.amitshekhar.android:android-networking:1.0.2

Hello, is there any help?

voobl avatar Feb 10 '22 21:02 voobl

when create project android studio in android studio bumblebee, jcenter must be add in settings.gradle

gandatadyo avatar Feb 22 '22 01:02 gandatadyo

try something like this is build.gladle file

allprojects { repositories { .... maven { url = "https://jcenter.bintray.com" } } }

pioneersingh321 avatar Dec 06 '22 05:12 pioneersingh321

Update your settings.gradle like this:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url = "https://jcenter.bintray.com" }
    }
}

RahulGupta2312 avatar Oct 10 '23 03:10 RahulGupta2312