搜索 Gradle 插件

版本 0.3.2(最新版)

0.3.2

创建于 2022 年 8 月 12 日。

将编译依赖项(.jar 文件)编译到 Android 的 'assets' 文件夹(.dex 文件)

使用 插件 DSL

plugins {
  id("com.github.axet.dxplugin") version "0.3.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.axet:gradle-android-dx:0.3.2")
  }
}

apply(plugin = "com.github.axet.dxplugin")

使用 插件 DSL

plugins {
  id "com.github.axet.dxplugin" version "0.3.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.axet:gradle-android-dx:0.3.2"
  }
}

apply plugin: "com.github.axet.dxplugin"

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