Owner:
axen520
Android vest-pack obfuscation: junk code, resource overlay, arsc, post-R8 component/view rename.
https://github.com/amsonix/molt
Sources: https://github.com/amsonix/molt.git
Version 1.0.0 (latest)
Created 06 August 2026.
Android vest-pack obfuscation: junk code, resource overlay, arsc, post-R8 component/view rename.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.amsonix.molt") version "1.0.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.github.amsonix.molt:io.github.amsonix.molt.gradle.plugin:1.0.0") }It can then be applied in the precompiled script plugin:plugins { id("io.github.amsonix.molt") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.amsonix.molt:io.github.amsonix.molt.gradle.plugin:1.0.0") } } apply(plugin = "io.github.amsonix.molt") - Applying plugins to all subprojects .