Home > front end >  Jcenter issue on using meowbottomnavigation
Jcenter issue on using meowbottomnavigation

Time:04-20

my first time developing an app but i immediately had a problem.

i was trying to add a "Meow Bottom Navigation" on my app but the problem is youtube tutorials always have this JCENTER repository but when i searched it has been shutdown already. i know nothing about these kind of things (repositories)

a. any tips on what to do regarding with this jcenter issue? b. does jcenter being shutdown means i can no longer use meow bottom navigation on my project?

(i hope you understand my english, lol)

CodePudding user response:

These repository handle storage of external dependencies for you. This means you are able to pull what you need from them at build time.

In your case, this seems easy as many libs of jCenter repos were mirrored in other repos (for example Meow Bottom Navigation from MavenCentral).

All you need to do to fix your problem is replace jCenter() repo from your top level build.gradle like this :

buildscript {
    repositories {
        jCenter() // -> replace by mavenCentral()
    }
  • Related