·
76 commits
to main
since this release
SparkButton is now released to MavenCentral and no longer to Jitpack. The group id changed to at.connyduck.sparkbutton.
Add the repository in your root build.gradle if you haven't already:
allprojects {
repositories {
...
+ mavenCentral()
}
}Then change the dependency:
dependencies {
...
- implementation("com.github.connyduck:sparkbutton:4.1.0")
+ implementation("at.connyduck.sparkbutton:sparkbutton:4.2.0")
}Dependency Upgrades:
- SparkButton now depends on
androidx.appcompat:appcompat:1.6.1