com.github.gmazzo.buildconfig
Owner: Guillermo Mazzola
A Gradle plugin for generating BuildConstants for any kind of project (no just Android)
https://github.com/gmazzo/gradle-buildconfig-plugin
Sources: https://github.com/gmazzo/gradle-buildconfig-plugin
Version 1.5.2
1.5.2
Created 29 September 2019.
A plugin for generating BuildConstants for any kind of Gradle projects: Java, Kotlin, Groovy, etc. Designed for KTS scripts.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.gmazzo.buildconfig") version "1.5.2"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.gmazzo:gradle-buildconfig-plugin:1.5.2") } } apply(plugin = "com.github.gmazzo.buildconfig")
- Applying plugins to all subprojects .