Could not find package library
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 **