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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.dpforge:manifestguard:1.0.0")
  }
}

apply(plugin = "com.dpforge.manifestguard")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.dpforge:manifestguard:1.0.0"
  }
}

apply plugin: "com.dpforge.manifestguard"

Learn how to apply plugins to subprojects