com.dpforge.manifestguard
Owner: Daniil Popov
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)
1.0.0
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"