Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 25 July 2024.

A plugin that helps you assembler module to app in compile step

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.electrolytej.static-bundle-plugin") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.electrolytej:module-assembler-gradle-plugin:1.0.0")
      }
    }
    
    apply(plugin = "io.github.electrolytej.static-bundle-plugin")
  • Applying plugins to all subprojects .