搜索 Gradle 插件

版本 0.0.14 (最新版)

0.0.14

创建于 2022年4月12日。

自动将插件的 apk 复制到宿主应用资源目录的插件

使用 插件 DSL

plugins {
  id("com.github.hanlyjiang.inline_apk_to_assets") version "0.0.14"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.hanlyjiang:gradlePlugins:0.0.14")
  }
}

apply(plugin = "com.github.hanlyjiang.inline_apk_to_assets")

使用 插件 DSL

plugins {
  id "com.github.hanlyjiang.inline_apk_to_assets" version "0.0.14"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.hanlyjiang:gradlePlugins:0.0.14"
  }
}

apply plugin: "com.github.hanlyjiang.inline_apk_to_assets"

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