Search Gradle plugins

com.github.lanchon.dexpatcher.base

Owner: Lanchon

The DexPatcher Base plugin provides basic DexPatcher, Apktool and dex2jar tasks. DexPatcher is free software. (GPLv3+)

https://dexpatcher.github.io/

Sources: https://github.com/Lanchon/DexPatcher-gradle

Version 0.3.1

0.3.1

Created 05 November 2016.

The DexPatcher Base plugin provides basic DexPatcher, Apktool and dex2jar tasks. DexPatcher is free software. (GPLv3+)

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.lanchon.dexpatcher.base") version "0.3.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.lanchon.dexpatcher:dexpatcher-gradle:0.3.1")
      }
    }
    
    apply(plugin = "com.github.lanchon.dexpatcher.base")
  • Applying plugins to all subprojects .