io.github.noproxy.android-consumer-proguard-filtering-plugin
所有者: 易亚军
用于过滤 Android 消费者 ProGuard 规则的插件
https://noproxy.github.io/gradle-plugin-kit
来源: https://github.com/noproxy/gradle-plugin-kit
使用 插件 DSL
plugins {
id("io.github.noproxy.android-consumer-proguard-filtering-plugin") version "0.0.2"
}
使用 传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.noproxy:android-consumer-proguard-filtering-plugin:0.0.2")
}
}
apply(plugin = "io.github.noproxy.android-consumer-proguard-filtering-plugin")
使用 插件 DSL
plugins {
id "io.github.noproxy.android-consumer-proguard-filtering-plugin" version "0.0.2"
}
使用 传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.noproxy:android-consumer-proguard-filtering-plugin:0.0.2"
}
}
apply plugin: "io.github.noproxy.android-consumer-proguard-filtering-plugin"