com.github.lanchon.dexpatcher.patched-application
所有者: Lanchon
DexPatcher Patched Application 插件通过将更改和添加应用到源应用程序(以 DexPatcher APK 库的形式导入)的代码和资源来生成修改后的 Android 应用程序。DexPatcher 是免费软件。(GPLv3+)
来源: https://github.com/Lanchon/DexPatcher-gradle
版本 2.0.0 (最新)
2.0.0
创建于 2019 年 10 月 31 日。
DexPatcher Patched Application 插件通过对作为 Android APK 或 DexPatcher APK 库提供的源应用程序的代码、清单和资源进行更改来生成修改后的 Android 应用程序。DexPatcher 是免费软件。(GPLv3+)
使用 插件 DSL
plugins {
id("com.github.lanchon.dexpatcher.patched-application") 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.patched-application")
使用 插件 DSL
plugins {
id "com.github.lanchon.dexpatcher.patched-application" 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.patched-application"