Search Gradle plugins

io.github.simonschiller.permissioncheck

PermissionCheck is a Gradle plugin that helps you catch Android permission regressions automatically.

https://github.com/simonschiller/permissioncheck

Sources: https://github.com/simonschiller/permissioncheck

Version 1.1.0

Created 30 June 2020.

PermissionCheck is a Gradle plugin that helps you catch Android permission regressions automatically.

Using the plugins DSL:

plugins {
  id("io.github.simonschiller.permissioncheck") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.simonschiller:permissioncheck:1.1.0")
  }
}

apply(plugin = "io.github.simonschiller.permissioncheck")

Using the plugins DSL:

plugins {
  id "io.github.simonschiller.permissioncheck" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.simonschiller:permissioncheck:1.1.0"
  }
}

apply plugin: "io.github.simonschiller.permissioncheck"

Learn how to apply plugins to subprojects