Owner:
0kt12
An Android Gradle Plugin for bytecode trace instrumentation and performance canary build integration on AGP 8+.
Version 0.0.1 (latest)
Created 27 April 2026.
An Android Gradle Plugin for bytecode trace instrumentation and performance canary build integration on AGP 8+.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.kernelflux.traceharbor.plugin") version "0.0.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.kernelflux.traceharbor.plugin:com.kernelflux.traceharbor.plugin.gradle.plugin:0.0.1") }It can then be applied in the precompiled script plugin:plugins { id("com.kernelflux.traceharbor.plugin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.kernelflux.traceharbor.plugin:com.kernelflux.traceharbor.plugin.gradle.plugin:0.0.1") } } apply(plugin = "com.kernelflux.traceharbor.plugin") - Applying plugins to all subprojects .