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