cn.dorck.code.guarder
Owner: Hulk Su
A plugin for code obfuscation.
https://github.com/Moosphan/app-code-obfuscation
Sources: https://github.com/Moosphan/app-code-obfuscation.git
Version 0.1.0-alpha
0.1.0-alpha
Created 12 December 2023.
A plugin for code obfuscation.
Using the plugins DSL:
plugins {
id("cn.dorck.code.guarder") version "0.1.0-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("cn.dorck:code-guard:0.1.0-alpha")
}
}
apply(plugin = "cn.dorck.code.guarder")
Using the plugins DSL:
plugins {
id "cn.dorck.code.guarder" version "0.1.0-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "cn.dorck:code-guard:0.1.0-alpha"
}
}
apply plugin: "cn.dorck.code.guarder"