搜索 Gradle 插件

com.dpforge.manifestguard

所有者: Daniil Popov

用于检测 AndroidManifest.xml 中意外更改的 Android 应用程序插件

https://github.com/int02h/manifest-guard

来源: https://github.com/int02h/manifest-guard

版本 1.0.0 (最新)

1.0.0

创建于 2022 年 12 月 13 日。

用于检测 AndroidManifest.xml 中意外更改的 Android 应用程序插件

使用 插件 DSL

plugins {
  id("com.dpforge.manifestguard") version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.dpforge:manifestguard:1.0.0")
  }
}

apply(plugin = "com.dpforge.manifestguard")

使用 插件 DSL

plugins {
  id "com.dpforge.manifestguard" version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.dpforge:manifestguard:1.0.0"
  }
}

apply plugin: "com.dpforge.manifestguard"

了解如何向子项目应用插件