com.gotokeep.gradle.plugins.combuild
Owner: zhangchangyi
Android gradle plugin to inject components for modularization.
Sources: https://github.com/gradle-guides/greeting-plugin-example
Version 1.2
1.2
Created 31 May 2018.
Android gradle plugin to inject components for modularization.
Using the plugins DSL:
plugins {
id("com.gotokeep.gradle.plugins.combuild") version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.AndroidIntl:framework-build:1.2")
}
}
apply(plugin = "com.gotokeep.gradle.plugins.combuild")
Using the plugins DSL:
plugins {
id "com.gotokeep.gradle.plugins.combuild" version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.AndroidIntl:framework-build:1.2"
}
}
apply plugin: "com.gotokeep.gradle.plugins.combuild"