cn.jony.packer
Owner:
Kim
android gradle 打包插件,依次完成以下两个功能: 1、使用qq压缩插件对包的资源进行混淆 2、对压缩包打出多渠道包
Sources: https://github.com/
Version 1.0.8.2 (latest)
Created 28 November 2017.
android gradle 打包插件,依次完成以下两个功能: 1、使用qq压缩插件对包的资源进行混淆 2、对压缩包打出多渠道包
Add this plugin to your build using the plugins DSL:
plugins {
id("cn.jony.packer") version "1.0.8.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("cn.jony.packer:cn.jony.packer.gradle.plugin:1.0.8.2") }
It can then be applied in the precompiled script plugin:plugins { id("cn.jony.packer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cn.jony.packer:cn.jony.packer.gradle.plugin:1.0.8.2") } } apply(plugin = "cn.jony.packer")
- Applying plugins to all subprojects .