Search Gradle plugins

Version 0.18.1 (latest)

Created 18 April 2023.

Configs for com.redmadrobot.application and com.redmadrobot.android-library

Using the plugins DSL:

plugins {
  id("com.redmadrobot.android-config") version "0.18.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.redmadrobot.build:infrastructure-android:0.18.1")
  }
}

apply(plugin = "com.redmadrobot.android-config")

Using the plugins DSL:

plugins {
  id "com.redmadrobot.android-config" version "0.18.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.redmadrobot.build:infrastructure-android:0.18.1"
  }
}

apply plugin: "com.redmadrobot.android-config"

Learn how to apply plugins to subprojects