Search Gradle plugins

Version 1.0.0-alpha02

Created 03 October 2023.

Configures Android library projects with custom configurations for your project.

Using the plugins DSL:

plugins {
  id("dev.teogor.ceres.android.library.config") version "1.0.0-alpha02"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.teogor.ceres.plugin:library-convention:1.0.0-alpha02")
  }
}

apply(plugin = "dev.teogor.ceres.android.library.config")

Using the plugins DSL:

plugins {
  id "dev.teogor.ceres.android.library.config" version "1.0.0-alpha02"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.teogor.ceres.plugin:library-convention:1.0.0-alpha02"
  }
}

apply plugin: "dev.teogor.ceres.android.library.config"

Learn how to apply plugins to subprojects