skip to Main Content

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)

2

Answers


  1. 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()
        }
    
    Login or Signup to reply.
  2. Meow Bottom Navigation For Java Projects without androidx is deprecated. The docs are suggesting you to use Meow Bottom Navigation in Kotlin.
    [1]: https://github.com/oneHamidreza/MeowBottomNavigationJava

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search