io.github.c0nnor263.obfustring-plugin
所有者: Oleh Boichuk
此插件可混淆您的字符串
https://github.com/c0nnor263/obfustring-plugin
来源: https://github.com/c0nnor263/Obfustring.git
使用 插件 DSL
plugins {
id("io.github.c0nnor263.obfustring-plugin") version "12.0.2"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.c0nnor263:obfustring-plugin:12.0.2")
}
}
apply(plugin = "io.github.c0nnor263.obfustring-plugin")
使用 插件 DSL
plugins {
id "io.github.c0nnor263.obfustring-plugin" version "12.0.2"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.c0nnor263:obfustring-plugin:12.0.2"
}
}
apply plugin: "io.github.c0nnor263.obfustring-plugin"