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