搜索Gradle插件

com.github.lanchon.dexpatcher.base

所有者: Lanchon

DexPatcher Base插件提供基本的DexPatcher、Apktool和dex2jar任务。DexPatcher是免费软件。(GPLv3+)

https://dexpatcher.github.io/

源代码: https://github.com/Lanchon/DexPatcher-gradle

版本 2.0.0 (最新版)

2.0.0

创建于 2019年10月31日。

DexPatcher Base插件提供基本的DexPatcher、Apktool和dex2jar任务。DexPatcher是免费软件。(GPLv3+)

使用plugins DSL

plugins {
  id("com.github.lanchon.dexpatcher.base") 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.base")

使用plugins DSL

plugins {
  id "com.github.lanchon.dexpatcher.base" 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.base"

了解如何将插件应用于子项目