com.gradleup.auto.manifest
Owner: GradleUp plugins
Automatically creates AndroidManifest.xml so you don't have to
https://github.com/GradleUp/auto-manifest/
Sources: https://github.com/GradleUp/auto-manifest.git
Version 2.0 (latest)
2.0
Created 16 April 2022.
Automatically creates AndroidManifest.xml so you don't have to
Using the plugins DSL:
plugins {
id("com.gradleup.auto.manifest") version "2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gradleup:auto-manifest-plugin:2.0")
}
}
apply(plugin = "com.gradleup.auto.manifest")
Using the plugins DSL:
plugins {
id "com.gradleup.auto.manifest" version "2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradleup:auto-manifest-plugin:2.0"
}
}
apply plugin: "com.gradleup.auto.manifest"