Install Takt via Gradle
masterTo use Takt in your Android project, add mavenCentral() to your repositories and include the following dependencies. It is recommended to use debugImplementation for the full library and releaseImplementation with the no-op version to ensure the FPS overlay does not appear in production builds.
repositories {
mavenCentral()
}
dependencies {
releaseImplementation 'jp.wasabeef:takt-no-op:2.1.1'
debugImplementation 'jp.wasabeef:takt:2.1.1'
}