oneHamidreza / MeowBottomNavigation

Android Meow Bottm Navigation
http://etebarian.com
1.32k stars 198 forks source link

Failed to resolve: com.etebarian:meow-bottom-navigation:1.3.1 #112

Open AbdElrahman-Rafaat-Amer opened 2 weeks ago

AbdElrahman-Rafaat-Amer commented 2 weeks ago

Could not find com.etebarian:meow-bottom-navigation:1.3.1. Required by: project :app

The library doesn't work anymore, Any action taken for that?

YASINaithamid commented 2 weeks ago

same issues i have tried with an empty new project but gradle can't resolve this dependency ,any comfirmation guys?

AbdElrahman-Rafaat-Amer commented 2 weeks ago

Jcenter finally shutdown and this what cause the error

YASINaithamid commented 2 weeks ago

Jcenter finally shutdown and this what cause the error

thanks!

foxtrotdev commented 1 week ago

You need to find AAR and use it: https://repositories.tomtom.com/ui/native/maven/com/etebarian/ https://repositories.tomtom.com/ui/native/maven/com/etebarian/meow-bottom-navigation-java/1.2.0/ https://repositories.tomtom.com/ui/native/maven/com/etebarian/meow-bottom-navigation/1.3.1/

build.gradle ->

dependencies {
    implementation(name: 'meow-bottom-navigation-java-1.2.0', ext: 'aar')
    ...
}

settings-gradle ->

repositories {
    google()
    mavenCentral()
    flatDir {
        dirs 'libs' // This is where your AAR file is located
    }
}

libs folder is in main root folder.

hridoykrisnadas commented 1 day ago

I have faced this problem, can anyone solve this:

Failed to resolve: com.etebarian:meow-bottom-navigation:1.3.1 Show in Project Structure dialog Affected Modules: app

harry8205 commented 16 hours ago

I have faced this problem, can anyone solve this:

Failed to resolve: com.etebarian:meow-bottom-navigation:1.3.1 Show in Project Structure dialog Affected Modules: app follow these steps https://github.com/oneHamidreza/MeowBottomNavigation/issues/112#issuecomment-2337315446