com.redmadrobot.android-library
Owner: red_mad_robot Team
Plugin to reduce boilerplate in Android libraries 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 libraries build scripts
Using the plugins DSL:
plugins {
id("com.redmadrobot.android-library") 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.android-library")
Using the plugins DSL:
plugins {
id "com.redmadrobot.android-library" 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.android-library"