Search Gradle plugins

Version 1.0.0-alpha05 (latest)

Created 15 April 2024.

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-alpha05"
}

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-alpha05")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects