The library cannot be downloaded (Failed to resolve: com.etebarian:meow-bottom-navigation:1.3.1)
Implementation synchronization fails in gradle file. build.gradle: Failed to resolve: com.etebarian:meow-bottom-navigation:1.3.1 Show in Project Structure dialog Affected Modules: app
Android Studio Bumblebee | 2021.1.1 Build #AI-211.7628.21.2111.8092744, built on January 19, 2022 Runtime version: 11.0.11+9-b60-7590822 amd64 VM: OpenJDK 64-Bit Server VM by Oracle Corporation Windows 10 10.0 GC: G1 Young Generation, G1 Old Generation Memory: 1280M Cores: 8 Registry: external.system.auto.import.disabled=true Non-Bundled Plugins: org.jetbrains.kotlin (211-1.6.10-release-923-AS7442.40)
I think jcenter is finally shut down.
In the new version jcenter() Add in Gradle->settings dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() jcenter() } }
In the new version jcenter() Add in Gradle->settings dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() jcenter() } }
Not worked. What to do next?
i am getting same error did you find any solution?
I have the same problem
In the new version jcenter() Add in Gradle->settings dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() jcenter() } }
We also have to add Package repository URL.
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}