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 0.0.2

Created 16 March 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.dpforge.manifestguard"

Learn how to apply plugins to subprojects