com.starter.easylauncher
Owner: Mateusz Kwieciński
Set of plugins that might be useful for Multi-Module Android projects.
https://github.com/usefulness/easylauncher-gradle-plugin
Sources: https://github.com/mateuszkwiecinski/easylauncher-gradle-plugin.git
Version 6.4.0 (latest)
6.4.0
Created 28 May 2024.
Set of plugins that might be useful for Multi-Module Android projects.
Using the plugins DSL:
plugins {
id("com.starter.easylauncher") version "6.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.project.starter:easylauncher:6.4.0")
}
}
apply(plugin = "com.starter.easylauncher")
Using the plugins DSL:
plugins {
id "com.starter.easylauncher" version "6.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.project.starter:easylauncher:6.4.0"
}
}
apply plugin: "com.starter.easylauncher"