io.github.dexpatcher.base
Owner:
Lanchon
DexPatcher is a toolchain for modifying Android applications at source-level using Java and the full power of Android Studio. The DexPatcher Base plugin provides basic DexPatcher, Apktool and dex2jar tasks. DexPatcher is free software. (GPLv3+)
Version 2.1.0 (latest)
Created 27 June 2020.
DexPatcher is a toolchain for modifying Android applications at source-level using Java and the full power of Android Studio. The DexPatcher Base plugin provides basic DexPatcher, Apktool and dex2jar tasks. DexPatcher is free software. (GPLv3+)
Using the plugins DSL:
plugins {
id "io.github.dexpatcher.base" version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.dexpatcher.dexpatcher-gradle:dexpatcher-gradle:2.1.0"
}
}
apply plugin: "io.github.dexpatcher.base"
Using the plugins DSL:
plugins {
id("io.github.dexpatcher.base") version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.dexpatcher.dexpatcher-gradle:dexpatcher-gradle:2.1.0")
}
}
apply(plugin = "io.github.dexpatcher.base")