Search Gradle plugins

dev.teogor.ceres.android.application.flavors

Configures Android application projects with multiple flavor variants for your project.

https://source.teogor.dev/ceres

Sources: https://github.com/teogor/ceres

Version 1.0.0-alpha05 (latest)

1.0.0-alpha05

Created 15 April 2024.

Configures Android application projects with multiple flavor variants for your project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.teogor.ceres.android.application.flavors") version "1.0.0-alpha05"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.teogor.ceres.plugin:library-convention:1.0.0-alpha05")
      }
    }
    
    apply(plugin = "dev.teogor.ceres.android.application.flavors")
  • Applying plugins to all subprojects .