Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Could not find package library #583

Open
imandaliya opened this issue Mar 7, 2022 · 0 comments
Open

Could not find package library #583

imandaliya opened this issue Mar 7, 2022 · 0 comments

Comments

@imandaliya
Copy link

implementation 'com.amitshekhar.android:android-networking:1.0.2'

settings.gradle

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}

Error :
Could not find com.amitshekhar.android:android-networking:1.0.2.
Required by:
project :App Project
Search in build.gradle files

Solve by adding maven { url "https://jitpack.io" } in settings.gradle

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}

**Need to change documentation **

imandaliya added a commit to imandaliya/Fast-Android-Networking that referenced this issue Mar 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant