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.3.0
1.3.0
Created 12 March 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.3.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.gmazzo:gradle-buildconfig-plugin:1.3.0") } } apply(plugin = "com.github.gmazzo.buildconfig")
- Applying plugins to all subprojects .