com.rmt.android.packager
Owner: Rex Mag-uyon Torres
A Gradle plugin for packaging your Android artifacts for delivery.
https://github.com/rexmtorres/Packager
Sources: https://github.com/rexmtorres/Custom-Build-Scripts.git
Version 0.3.0-alpha01 (latest)
Created 02 September 2019.
A Gradle plugin for packaging your Android artifacts for delivery.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.rmt.android.packager") version "0.3.0-alpha01"
}
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("com.rmt.android.packager:com.rmt.android.packager.gradle.plugin:0.3.0-alpha01") }
It can then be applied in the precompiled script plugin:plugins { id("com.rmt.android.packager") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.rmt.android.packager:com.rmt.android.packager.gradle.plugin:0.3.0-alpha01") } } apply(plugin = "com.rmt.android.packager")
- Applying plugins to all subprojects .