com.redmadrobot.android-config
Owner: red_mad_robot Team
Configs for com.redmadrobot.application and com.redmadrobot.android-library
https://github.com/RedMadRobot/gradle-infrastructure
Sources: https://github.com/RedMadRobot/gradle-infrastructure.git
Version 0.19
0.19
Created 26 July 2024.
Configs for com.redmadrobot.application and com.redmadrobot.android-library
Using the plugins DSL:
plugins {
id("com.redmadrobot.android-config") version "0.19"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.redmadrobot.build:infrastructure-android:0.19")
}
}
apply(plugin = "com.redmadrobot.android-config")
Using the plugins DSL:
plugins {
id "com.redmadrobot.android-config" version "0.19"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.redmadrobot.build:infrastructure-android:0.19"
}
}
apply plugin: "com.redmadrobot.android-config"