Search Gradle plugins

com.klaxit.hiddensecrets

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.1.3

Created 22 December 2021.

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.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.klaxit.hiddensecrets:HiddenSecretsPlugin:0.1.3")
  }
}

apply(plugin = "com.klaxit.hiddensecrets")

Using the plugins DSL:

plugins {
  id "com.klaxit.hiddensecrets" version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.klaxit.hiddensecrets:HiddenSecretsPlugin:0.1.3"
  }
}

apply plugin: "com.klaxit.hiddensecrets"

Learn how to apply plugins to subprojects