io.github.goldfish07.reschiper
Owner:
Ayush Bisht
AAB Resource Obfuscation Tool
https://github.com/goldfish07/reschiper
Sources: https://github.com/goldfish07/reschiper
Version 0.1.0-rc6 (latest)
Created 07 September 2025.
AAB Resource Obfuscation Tool
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.goldfish07.reschiper") version "0.1.0-rc6"
}
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-rc6") }
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-rc6") } } apply(plugin = "io.github.goldfish07.reschiper")
- Applying plugins to all subprojects .