Search Gradle plugins

com.dpforge.manifestguard

Plugin for Android applications for detecting unexpected changes in AndroidManifest.xml

https://github.com/int02h/manifest-guard

Sources: https://github.com/int02h/manifest-guard

Version 1.0.0 (latest)

Created 13 December 2022.

Plugin for Android applications for detecting unexpected changes in AndroidManifest.xml

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.dpforge.manifestguard") version "1.0.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.dpforge.manifestguard:com.dpforge.manifestguard.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.dpforge.manifestguard")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.dpforge.manifestguard:com.dpforge.manifestguard.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.dpforge.manifestguard")
  • Applying plugins to all subprojects .