net.serverpeon.gradle.patchandroid
Owner: David van Leusen
Simplify common configuration of android submodules
https://github.com/Kiskae/Gradle-PatchAndroid
Sources: https://github.com/Kiskae/Gradle-PatchAndroid.git
Version 1.0-beta01 (latest)
1.0-beta01
Created 06 December 2018.
Simplify common configuration of android submodules
Using the plugins DSL:
plugins {
id("net.serverpeon.gradle.patchandroid") version "1.0-beta01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.serverpeon.gradle:patch-android:1.0-beta01")
}
}
apply(plugin = "net.serverpeon.gradle.patchandroid")
Using the plugins DSL:
plugins {
id "net.serverpeon.gradle.patchandroid" version "1.0-beta01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.serverpeon.gradle:patch-android:1.0-beta01"
}
}
apply plugin: "net.serverpeon.gradle.patchandroid"