com.github.lanchon.dexpatcher.patch-library
Owner: Lanchon
The DexPatcher Patch Library plugin produces a DexPatcher patch library file that bundles compiled changes and additions to code and resources of a source application imported as a DexPatcher APK library, without bundling any part of the source application itself. The file is similar in structure to an Android library (AAR) file. The changes bundled in a patch library can be applied to the source application using the DexPatcher Patched Application plugin. Several patch libraries can be applied in the same step, or their application can be serialized though the cyclic use of the APK Library and Patched Application plugins. DexPatcher is free software. (GPLv3+)
Sources: https://github.com/Lanchon/DexPatcher-gradle
Version 2.0.0-alpha3
2.0.0-alpha3
Created 23 April 2019.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.lanchon.dexpatcher.patch-library") version "2.0.0-alpha3"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.lanchon.dexpatcher:dexpatcher-gradle:2.0.0-alpha3") } } apply(plugin = "com.github.lanchon.dexpatcher.patch-library")
- Applying plugins to all subprojects .