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 3.3.0-alpha01 (latest)
3.3.0-alpha01
Created 14 December 2018.
Android componentized automatic build script
Using the plugins DSL:
plugins {
id("calces.appconfig") version "3.3.0-alpha01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.tangpj.tools:component:3.3.0-alpha01")
}
}
apply(plugin = "calces.appconfig")
Using the plugins DSL:
plugins {
id "calces.appconfig" version "3.3.0-alpha01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.tangpj.tools:component:3.3.0-alpha01"
}
}
apply plugin: "calces.appconfig"