Update the Tealeaf Android library to a newer version
To update the Tealeaf library in your Android app, do the following:
- Open the app-level build.gradle file.
- In the
dependencies
section, update the version number for the Tealeaf plugin.
dependencies {
implementation("io.github.go-acoustic:tealeaf:10.3.362")
}
- Clean and rebuild your project.
Notes:
- To find the latest version, see SDK MavenCentral repo.
- We recommend using the plus sign instead of version numbers. It prompts Gradle to install a new version as soon as it is made available.
dependencies {
implementation("io.github.go-acoustic:tealeaf:+")
}
Updated about 2 months ago