com.redmadrobot.application
Owner: red_mad_robot Team
Plugin to reduce boilerplate in Android applications build scripts
https://github.com/RedMadRobot/gradle-infrastructure
Sources: https://github.com/RedMadRobot/gradle-infrastructure.git
Version 0.19.1 (latest)
0.19.1
Created 31 July 2024.
Plugin to reduce boilerplate in Android applications build scripts
Using the plugins DSL:
plugins {
id("com.redmadrobot.application") version "0.19.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.redmadrobot.build:infrastructure-android:0.19.1")
}
}
apply(plugin = "com.redmadrobot.application")
Using the plugins DSL:
plugins {
id "com.redmadrobot.application" version "0.19.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.redmadrobot.build:infrastructure-android:0.19.1"
}
}
apply plugin: "com.redmadrobot.application"