chip-navigation-bar icon indicating copy to clipboard operation
chip-navigation-bar copied to clipboard

Could not find com.github.ismaeldivita:chip-navigation-bar:1.4.0.

Open 00RohitRoshan opened this issue 3 years ago • 1 comments

Execution failed for task ':app:mergeDebugJavaResource'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
   > Could not find com.github.ismaeldivita:chip-navigation-bar:1.4.0.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/com/github/ismaeldivita/chip-navigation-bar/1.4.0/chip-navigation-bar-1.4.0.pom
       - https://repo.maven.apache.org/maven2/com/github/ismaeldivita/chip-navigation-bar/1.4.0/chip-navigation-bar-1.4.0.pom
     Required by:
         project :app

Can any body suggest how to fix this 👆.

00RohitRoshan avatar Sep 16 '22 04:09 00RohitRoshan

add this maven { url 'https://jitpack.io' } in dependencyResolutionManagement like this

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

adhamalaa111 avatar Jun 20 '23 06:06 adhamalaa111