com.telefonica.manifestcheck
所有者: Telefónica
ManifestCheck是一个Gradle插件,可以帮助您自动捕获Android权限/功能回归。
https://github.com/Telefonica/android-permissioncheck
来源: https://github.com/Telefonica/android-permissioncheck
使用插件DSL
plugins {
id("com.telefonica.manifestcheck") version "1.0.1"
}
使用旧插件的application
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.telefonica:manifestcheck:1.0.1")
}
}
apply(plugin = "com.telefonica.manifestcheck")
使用插件DSL
plugins {
id "com.telefonica.manifestcheck" version "1.0.1"
}
使用旧插件的application
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.telefonica:manifestcheck:1.0.1"
}
}
apply plugin: "com.telefonica.manifestcheck"