Search Gradle plugins

Version 5.1.2

Created 23 June 2022.

Set of plugins that might be useful for Multi-Module Android projects.

Using the plugins DSL:

plugins {
  id("com.starter.easylauncher") version "5.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.project.starter:easylauncher:5.1.2")
  }
}

apply(plugin = "com.starter.easylauncher")

Using the plugins DSL:

plugins {
  id "com.starter.easylauncher" version "5.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.project.starter:easylauncher:5.1.2"
  }
}

apply plugin: "com.starter.easylauncher"

Learn how to apply plugins to subprojects