ibrahimsn98 / SmoothBottomBar

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

Could not resolve com.github.ibrahimsn98:SmoothBottomBar:1.7.6 #80

Closed milon27 closed 3 years ago

milon27 commented 3 years ago

Could not find com.github.ibrahimsn98:SmoothBottomBar:1.7.6.

Possible solution:

milon27 commented 3 years ago

fix this by adding maven in both buildscript & allprojects

buildscript {
    repositories {
         ....
        maven { url 'https://jitpack.io' }
    }
}

allprojects {
    repositories {
     .......
        maven { url 'https://www.jitpack.io' }
    }
}