calces.appconfig
Owner: PJ Tang
Android componentized automatic build script
https://github.com/DobbyTang/calces-gradle-plugin
Sources: git@github.com:DobbyTang/calces-gradle-plugin.git
Version 3.3.0-alpha01 (latest)
Created 14 December 2018.
Android componentized automatic build script
Add this plugin to your build using the plugins DSL:
plugins {
id("calces.appconfig") version "3.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("calces.appconfig:calces.appconfig.gradle.plugin:3.3.0-alpha01") }
It can then be applied in the precompiled script plugin:plugins { id("calces.appconfig") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("calces.appconfig:calces.appconfig.gradle.plugin:3.3.0-alpha01") } } apply(plugin = "calces.appconfig")
- Applying plugins to all subprojects .