ibrahimsn98 / SmoothBottomBar

A lightweight Android material bottom navigation bar library
MIT License
1.95k stars 253 forks source link

Failed to resolve: com.github.ibrahimsn98:SmoothBottomBar:1.7.8 #98

Open Kayuemkhan opened 2 years ago

Kayuemkhan commented 2 years ago

My build.gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() jcenter() maven { url "https://www.jitpack.io" } } dependencies { classpath 'com.android.tools.build:gradle:7.0.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.0"

}

}

g4m3rxrene commented 2 years ago

hello I was having the same issue and did some fiddling around, I know its a bit late but you need to add the " maven { url 'https://jitpack.io' } " into the settings.gradle repository, such that it looks like so.

repositories { google() mavenCentral() maven { url 'https://jitpack.io' } jcenter() // Warning: this repository is going to shut down soon }