Owner:
Der_Googler
Bundles Java/Kotlin Android sources and selected dependencies into a DEX file using D8.
https://github.com/MMRLApp/DEXMO
Sources: https://github.com/MMRLApp/DEXMO.git
Version 1.0.0 (latest)
Created 10 March 2026.
Bundles Java/Kotlin Android sources and selected dependencies into a DEX file using D8.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.mmrl.dexmo") 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("dev.mmrl.dexmo:dev.mmrl.dexmo.gradle.plugin:1.0.0") }It can then be applied in the precompiled script plugin:plugins { id("dev.mmrl.dexmo") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.mmrl.dexmo:dev.mmrl.dexmo.gradle.plugin:1.0.0") } } apply(plugin = "dev.mmrl.dexmo") - Applying plugins to all subprojects .