搜索 Gradle 插件

版本 2.0(最新版)

2.0

创建于 2022 年 4 月 16 日。

自动创建 AndroidManifest.xml,因此您不必自己手动创建

使用插件 DSL

plugins {
  id("com.gradleup.auto.manifest") version "2.0"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.gradleup:auto-manifest-plugin:2.0")
  }
}

apply(plugin = "com.gradleup.auto.manifest")

使用插件 DSL

plugins {
  id "com.gradleup.auto.manifest" version "2.0"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.gradleup:auto-manifest-plugin:2.0"
  }
}

apply plugin: "com.gradleup.auto.manifest"

了解如何将插件应用于子项目