Search Gradle plugins

com.telefonica.manifestcheck

ManifestCheck is a Gradle plugin that helps you catch Android permission/feature regressions automatically.

https://github.com/Telefonica/android-permissioncheck

Sources: https://github.com/Telefonica/android-permissioncheck

Version 1.0.1 (latest)

Created 08 June 2023.

ManifestCheck is a Gradle plugin that helps you catch Android permission/feature regressions automatically.

Using the plugins DSL:

plugins {
  id("com.telefonica.manifestcheck") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.telefonica:manifestcheck:1.0.1")
  }
}

apply(plugin = "com.telefonica.manifestcheck")

Using the plugins DSL:

plugins {
  id "com.telefonica.manifestcheck" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.telefonica:manifestcheck:1.0.1"
  }
}

apply plugin: "com.telefonica.manifestcheck"

Learn how to apply plugins to subprojects