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.
Using the plugins DSL:
plugins {
id("com.jenzz.buildconstants") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.jenzz:plugin:1.0.0")
}
}
apply(plugin = "com.jenzz.buildconstants")
Using the plugins DSL:
plugins {
id "com.jenzz.buildconstants" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.jenzz:plugin:1.0.0"
}
}
apply plugin: "com.jenzz.buildconstants"