Owner:
huanyu
Gradle plugin for AppActuator, an Android library that lets AI agents and LLM-based coding tools invoke methods registered by the host app over adb and a local JSON-RPC 2.0 socket, and subscribe to app events. The plugin injects the AppActuator runtime (full or noop implementation) into the matching build variant, applies the keep-alive manifest entries, embeds the RSA public key for authenticated builds, and audits release builds to guarantee that all AppActuator functionality is stripped from production packages.
Version 0.3.0 (latest)
Created 07 August 2026.
Gradle plugin for AppActuator, an Android library that lets AI agents and LLM-based coding tools invoke methods registered by the host app over adb and a local JSON-RPC 2.0 socket, and subscribe to app events. The plugin injects the AppActuator runtime (full or noop implementation) into the matching build variant, applies the keep-alive manifest entries, embeds the RSA public key for authenticated builds, and audits release builds to guarantee that all AppActuator functionality is stripped from production packages.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.gitee.kuangthree.appactuator") version "0.3.0"
}
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("io.gitee.kuangthree.appactuator:io.gitee.kuangthree.appactuator.gradle.plugin:0.3.0") }It can then be applied in the precompiled script plugin:plugins { id("io.gitee.kuangthree.appactuator") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.gitee.kuangthree.appactuator:io.gitee.kuangthree.appactuator.gradle.plugin:0.3.0") } } apply(plugin = "io.gitee.kuangthree.appactuator") - Applying plugins to all subprojects .