co.csadev.whitelabel
Owner: Charles Anderson
A gradle plugin for quickly creating white labeled apps!
https://github.com/gtcompscientist
Sources: https://github.com/gtcompscientist/whitelabel
Version 0.6 (latest)
Created 14 October 2018.
A gradle plugin for quickly creating white labeled apps!
Add this plugin to your build using the plugins DSL:
plugins {
id("co.csadev.whitelabel") version "0.6"
}
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("co.csadev.whitelabel:co.csadev.whitelabel.gradle.plugin:0.6") }
It can then be applied in the precompiled script plugin:plugins { id("co.csadev.whitelabel") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("co.csadev.whitelabel:co.csadev.whitelabel.gradle.plugin:0.6") } } apply(plugin = "co.csadev.whitelabel")
- Applying plugins to all subprojects .