io.github.goldfish07.reschiper
CC-compatible
Owner:
Ayush Bisht
AAB Resource Obfuscation Tool
Version 0.1.0-rc7 (latest)
Created 04 July 2026.
Android App Bundle resource obfuscation plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.goldfish07.reschiper") version "0.1.0-rc7"
}
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.github.goldfish07.reschiper:io.github.goldfish07.reschiper.gradle.plugin:0.1.0-rc7") }It can then be applied in the precompiled script plugin:plugins { id("io.github.goldfish07.reschiper") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.goldfish07.reschiper:io.github.goldfish07.reschiper.gradle.plugin:0.1.0-rc7") } } apply(plugin = "io.github.goldfish07.reschiper") - Applying plugins to all subprojects .