MeowBottomNavigation icon indicating copy to clipboard operation
MeowBottomNavigation copied to clipboard

The library cannot be downloaded (Failed to resolve: com.etebarian:meow-bottom-navigation:1.3.1)

Open om4rgonzalez opened this issue 3 years ago • 11 comments

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)

om4rgonzalez avatar Feb 03 '22 15:02 om4rgonzalez

I think jcenter is finally shut down.

AlirezaIvaz avatar Feb 08 '22 07:02 AlirezaIvaz

In the new version jcenter() Add in Gradle->settings dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() jcenter() } }

caubuonviaiV avatar Apr 25 '22 03:04 caubuonviaiV

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?

ApunichGULSHER avatar Oct 28 '22 10:10 ApunichGULSHER

i am getting same error did you find any solution?

basit112 avatar Jun 02 '23 05:06 basit112

I have the same problem

AndresFelipe077 avatar Oct 05 '23 18:10 AndresFelipe077

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' }
    }

ApunichGULSHER avatar Oct 06 '23 05:10 ApunichGULSHER