net.serverpeon.gradle.patchandroid
所有者: David van Leusen
简化android子模块的常见配置
https://github.com/Kiskae/Gradle-PatchAndroid
源代码: https://github.com/Kiskae/Gradle-PatchAndroid.git
版本 1.0-beta01 (最新版)
1.0-beta01
创建于 2018年12月6日。
简化android子模块的常见配置
使用 插件DSL
plugins {
id("net.serverpeon.gradle.patchandroid") version "1.0-beta01"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.serverpeon.gradle:patch-android:1.0-beta01")
}
}
apply(plugin = "net.serverpeon.gradle.patchandroid")
使用 插件DSL
plugins {
id "net.serverpeon.gradle.patchandroid" version "1.0-beta01"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.serverpeon.gradle:patch-android:1.0-beta01"
}
}
apply plugin: "net.serverpeon.gradle.patchandroid"