Open yousefan opened 6 years ago
how can i download the jar file of this library?
Same problem here : Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.amitshekhar.android:android-networking:1.0.2.
Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve com.amitshekhar.android:android-networking:1.0.2.
Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not resolve com.amitshekhar.android:android-networking:1.0.2.
Unable to resolve dependency for ':app@release/compileClasspath': Could not resolve com.amitshekhar.android:android-networking:1.0.2.
Unable to resolve dependency for ':app@releaseUnitTest/compileClasspath': Could not resolve com.amitshekhar.android:android-networking:1.0.2.
hi when i add the blew link to my gradle to add this library i saw an error that say : could not solve com.amitshekhar.android:android-networking:1.0.1 what's the problem, i try this in android studio 3.1 and 2.2 but there was same problem what should i do? com.amitshekhar.android:android-networking:1.0.1
Update your studio to 3.3
hi i have same problem. i updated my studio to 3.3. but, the problem did not solve... what should i do..? thank you for reading my question!
oh i solve this problem! the problem was jcenter server not working!
oh i solve this problem! the problem was jcenter server not working!
Hello, I have seen that you have been able to solve the problem, and I would like to know if you could help me with it. Since I don't have much experience in the field. Beforehand thank you very much
Hello team, Jcenter is now deprecated in the new android artic fox build. is there a way this networking library can on mavencentral ?
Hello team, Jcenter is now deprecated in the new android artic fox build. is there a way this networking library can on mavencentral ?
You can use this one
`repositories {
// jcenter()
mavenCentral()
google()
maven { url "https://jitpack.io" }
}` And the depedency
implementation 'com.github.amitshekhariitbhu:Fast-Android-Networking:1.0.2'
None of the answers on this page were working for me, but I did some digging and apparently Gradle changed some things about how it handles repositories. Here's how I fixed the issue:
settings.gradle
, find DependencyResolutionManagement
and add maven { url 'https://jitpack.io' }
to the repositories section:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
build.gradle
for the Project (NOT 'Module'), add the individual module:
implementation 'com.github.amitshekhariitbhu:Fast-Android-Networking:v1.0.0'
Note: if you have previously added an allprojects { repositories { ... } }
section with maven { url 'https://jitpack.io }
in it, I found this would only work if you removed that section. Check out the answer from wwilczyn from this Stackoverflow thread (as of this writing it's the #2 answer on the page).
implementation 'com.github.amitshekhariitbhu:Fast-Android-Networking:1.0.2'
This worked for me. Thanks!
Thanks you
Now its working
None of the answers on this page were working for me, but I did some digging and apparently Gradle changed some things about how it handles repositories. Here's how I fixed the issue:
- In
settings.gradle
, findDependencyResolutionManagement
and addmaven { url 'https://jitpack.io' }
to the repositories section:dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url 'https://jitpack.io' } } }
- In your
build.gradle
for the Project (NOT 'Module'), add the individual module:implementation 'com.github.amitshekhariitbhu:Fast-Android-Networking:v1.0.0'
Note: if you have previously added an
allprojects { repositories { ... } }
section withmaven { url 'https://jitpack.io }
in it, I found this would only work if you removed that section. Check out the answer from wwilczyn from this Stackoverflow thread (as of this writing it's the #2 answer on the page).
Thank you very much....
Thanks bruh its working now..
implementation 'com.github.amitshekhariitbhu:Fast-Android-Networking:v1.0.0'
None of the answers on this page were working for me, but I did some digging and apparently Gradle changed some things about how it handles repositories. Here's how I fixed the issue:
- In
settings.gradle
, findDependencyResolutionManagement
and addmaven { url 'https://jitpack.io' }
to the repositories section:dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url 'https://jitpack.io' } } }
- In your
build.gradle
for the Project (NOT 'Module'), add the individual module:implementation 'com.github.amitshekhariitbhu:Fast-Android-Networking:v1.0.0'
Note: if you have previously added an
allprojects { repositories { ... } }
section withmaven { url 'https://jitpack.io }
in it, I found this would only work if you removed that section. Check out the answer from wwilczyn from this Stackoverflow thread (as of this writing it's the #2 answer on the page).
this is working for me.....
None of the answers on this page were working for me, but I did some digging and apparently Gradle changed some things about how it handles repositories. Here's how I fixed the issue:
- In
settings.gradle
, findDependencyResolutionManagement
and addmaven { url 'https://jitpack.io' }
to the repositories section:dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url 'https://jitpack.io' } } }
- In your
build.gradle
for the Project (NOT 'Module'), add the individual module:implementation 'com.github.amitshekhariitbhu:Fast-Android-Networking:v1.0.0'
Note: if you have previously added an
allprojects { repositories { ... } }
section withmaven { url 'https://jitpack.io }
in it, I found this would only work if you removed that section. Check out the answer from wwilczyn from this Stackoverflow thread (as of this writing it's the #2 answer on the page).
Thanks, It worked... !
hi when i add the blew link to my gradle to add this library i saw an error that say : could not solve com.amitshekhar.android:android-networking:1.0.1 what's the problem, i try this in android studio 3.1 and 2.2 but there was same problem what should i do? com.amitshekhar.android:android-networking:1.0.1