com.github.hanlyjiang.inline_apk_to_assets
Owner: HanlyJiang
Plugin for auto copy plugin's apk to host app assets dir
https://github.com/hanlyjiang/android-libraries/blob/master/gradlePlugins
Sources: https://github.com/hanlyjiang/android-libraries.git
Version 0.0.14 (latest)
0.0.14
Created 12 April 2022.
Plugin for auto copy plugin's apk to host app assets dir
Using the plugins DSL:
plugins {
id("com.github.hanlyjiang.inline_apk_to_assets") version "0.0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.hanlyjiang:gradlePlugins:0.0.14")
}
}
apply(plugin = "com.github.hanlyjiang.inline_apk_to_assets")
Using the plugins DSL:
plugins {
id "com.github.hanlyjiang.inline_apk_to_assets" version "0.0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.hanlyjiang:gradlePlugins:0.0.14"
}
}
apply plugin: "com.github.hanlyjiang.inline_apk_to_assets"