com.klaxit.hiddensecrets
Owner: Benjamin AIMONE
This plugin allows any Android developer to deeply hide secrets in its project to prevent credentials harvesting.
https://github.com/klaxit/hidden-secrets-gradle-plugin
Sources: https://github.com/klaxit/hidden-secrets-gradle-plugin.git
Version 0.2.1 (latest)
0.2.1
Created 18 October 2022.
This plugin allows any Android developer to deeply hide secrets in its project to prevent credentials harvesting.
Using the plugins DSL:
plugins {
id("com.klaxit.hiddensecrets") version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.klaxit.hiddensecrets:HiddenSecretsPlugin:0.2.1")
}
}
apply(plugin = "com.klaxit.hiddensecrets")
Using the plugins DSL:
plugins {
id "com.klaxit.hiddensecrets" version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.klaxit.hiddensecrets:HiddenSecretsPlugin:0.2.1"
}
}
apply plugin: "com.klaxit.hiddensecrets"