Search Gradle plugins

io.github.gmazzo.android.manifest.lock

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

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.gmazzo.android.manifest.lock") version "1.1.3"
}

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("io.github.gmazzo.android.manifest.lock:io.github.gmazzo.android.manifest.lock.gradle.plugin:1.1.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.gmazzo.android.manifest.lock")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.gmazzo.android.manifest.lock:io.github.gmazzo.android.manifest.lock.gradle.plugin:1.1.3")
      }
    }
    
    apply(plugin = "io.github.gmazzo.android.manifest.lock")
  • Applying plugins to all subprojects .