Update the Tealeaf Android library to a newer version

To update the Tealeaf library in your Android app, do the following:

  1. Open the app-level build.gradle file.
  2. In the dependencies section, update the version number for the Tealeaf plugin.
dependencies {
  implementation("io.github.go-acoustic:tealeaf:10.3.362")
}
  1. 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:+")
}