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)
Created 06 December 2018.
Simplify common configuration of android submodules
Add this plugin to your build using the plugins DSL:
plugins {
id("net.serverpeon.gradle.patchandroid") version "1.0-beta01"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.serverpeon.gradle.patchandroid:net.serverpeon.gradle.patchandroid.gradle.plugin:1.0-beta01") }
It can then be applied in the precompiled script plugin:plugins { id("net.serverpeon.gradle.patchandroid") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.serverpeon.gradle.patchandroid:net.serverpeon.gradle.patchandroid.gradle.plugin:1.0-beta01") } } apply(plugin = "net.serverpeon.gradle.patchandroid")
- Applying plugins to all subprojects .