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-alpha1
Created 14 April 2019.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.lanchon.dexpatcher.patch-library") version "2.0.0-alpha1"
}
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("com.github.lanchon.dexpatcher.patch-library:com.github.lanchon.dexpatcher.patch-library.gradle.plugin:2.0.0-alpha1") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.lanchon.dexpatcher.patch-library") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.lanchon.dexpatcher.patch-library:com.github.lanchon.dexpatcher.patch-library.gradle.plugin:2.0.0-alpha1") } } apply(plugin = "com.github.lanchon.dexpatcher.patch-library")
- Applying plugins to all subprojects .