io.github.gmazzo.android.manifest.lock
Owner: Guillermo Mazzola
A gradle Gradle to control what Permissions, SDK-level, and other PlayStore listing sensitive settings is added into the Android Manifest
https://github.com/gmazzo/gradle-android-manifest-lock-plugin
Sources: https://github.com/gmazzo/gradle-android-manifest-lock-plugin
Version 1.1.3 (latest)
1.1.3
Created 25 April 2024.
A gradle Gradle to control what Permissions, SDK-level, and other PlayStore listing sensitive settings is added into the Android Manifest
Using the plugins DSL:
plugins {
id("io.github.gmazzo.android.manifest.lock") version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.gmazzo.android.manifest.lock:plugin:1.1.3")
}
}
apply(plugin = "io.github.gmazzo.android.manifest.lock")
Using the plugins DSL:
plugins {
id "io.github.gmazzo.android.manifest.lock" version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.gmazzo.android.manifest.lock:plugin:1.1.3"
}
}
apply plugin: "io.github.gmazzo.android.manifest.lock"