com.jenzz.buildconstants
Owner:
Jens Driller
A Gradle plugin for Android which generates both Java and XML constants as part of the build process.
https://github.com/jenzz/gradle-android-buildconstants-plugin
Sources: https://github.com/jenzz/gradle-android-buildconstants-plugin
Version 1.0.0
Created 14 February 2016.
A Gradle plugin for Android which generates both Java and XML constants as part of the build process.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.jenzz.buildconstants") 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("com.jenzz.buildconstants:com.jenzz.buildconstants.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.jenzz.buildconstants") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.jenzz.buildconstants:com.jenzz.buildconstants.gradle.plugin:1.0.0") } } apply(plugin = "com.jenzz.buildconstants")
- Applying plugins to all subprojects .