搜索 Gradle 插件

com.github.lanchon.dexpatcher.apk-library

所有者: Lanchon

DexPatcher APK Library 插件处理 Android 应用程序(APK)文件并生成可用于创建源应用的修改版本的 DexPatcher APK 库文件。该文件的结构类似于 Android 库(AAR)文件。它包含应用的解码 Android 资源以及其 Dalvik 字节码转换为 Java 字节码等。DexPatcher 是免费软件。(GPLv3+)

https://dexpatcher.github.io/

来源: https://github.com/Lanchon/DexPatcher-gradle

版本 2.0.0(最新版)

2.0.0

创建于 2019 年 10 月 31 日。

DexPatcher APK Library 插件处理提供的 Android APK 源应用并生成 DexPatcher APK 库。该库用于创建源应用的修改版本,包括其 Dalvik 字节码和已解码的清单及资源。DexPatcher 是免费软件。(GPLv3+)

使用 插件 DSL

plugins {
  id("com.github.lanchon.dexpatcher.apk-library") version "2.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.lanchon.dexpatcher:dexpatcher-gradle:2.0.0")
  }
}

apply(plugin = "com.github.lanchon.dexpatcher.apk-library")

使用 插件 DSL

plugins {
  id "com.github.lanchon.dexpatcher.apk-library" version "2.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.lanchon.dexpatcher:dexpatcher-gradle:2.0.0"
  }
}

apply plugin: "com.github.lanchon.dexpatcher.apk-library"

学习如何将插件应用于子项目