calces.appconfig
Owner: PJ Tang
Android componentized automatic build script
https://github.com/DobbyTang/calces-gradle-plugin
Sources: git@github.com:DobbyTang/calces-gradle-plugin.git
Version 1.2.3
1.2.3
Created 28 September 2018.
Android componentized automatic build script
Using the plugins DSL:
plugins {
id("calces.appconfig") version "1.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.tangpj.tools:calces:1.2.3")
}
}
apply(plugin = "calces.appconfig")
Using the plugins DSL:
plugins {
id "calces.appconfig" version "1.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.tangpj.tools:calces:1.2.3"
}
}
apply plugin: "calces.appconfig"