com.github.hanlyjiang.inline_apk_to_assets
所有者: HanlyJiang
自动将插件的 apk 复制到宿主应用资源目录的插件
https://github.com/hanlyjiang/android-libraries/blob/master/gradlePlugins
源码: https://github.com/hanlyjiang/android-libraries.git
使用 插件 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"