Since Bintray is retired, I would suggest switching to maven central. If you prefer a quick fix, I would suggest at-least creating a git tag 1.1.1 so people can download it using jitpack as:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.AndreiD:TSnackBar:1.1.1'
}
Since Bintray is retired, I would suggest switching to maven central. If you prefer a quick fix, I would suggest at-least creating a git tag 1.1.1 so people can download it using jitpack as: