com.telefonica.manifestcheck
Owner: Telefónica
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.2 (latest)
1.0.2
Created 04 September 2024.
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.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.telefonica:manifestcheck:1.0.2")
}
}
apply(plugin = "com.telefonica.manifestcheck")
Using the plugins DSL:
plugins {
id "com.telefonica.manifestcheck" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.telefonica:manifestcheck:1.0.2"
}
}
apply plugin: "com.telefonica.manifestcheck"