Search Gradle plugins

Version 1.0.0 (latest)

Created 09 March 2019.

Android multi manifest merge in a module.

Using the plugins DSL:

plugins {
  id("com.hguang.manifest.merge") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.hguang.gradle:plugin:1.0.3")
  }
}

apply(plugin = "com.hguang.manifest.merge")

Using the plugins DSL:

plugins {
  id "com.hguang.manifest.merge" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.hguang.gradle:plugin:1.0.3"
  }
}

apply plugin: "com.hguang.manifest.merge"

Learn how to apply plugins to subprojects