Search Gradle plugins

io.github.5hmlA.android.compose

android compose config for build.gradle, necessary related settings for compose will be automatically set

https://github.com/5hmlA/conventions

Sources: https://github.com/5hmlA/conventions

Version 2.1.3.3 (latest)

2.1.3.3

Created 02 July 2024.

android compose config for build.gradle, necessary related settings for compose will be automatically set

Using the plugins DSL:

plugins {
  id("io.github.5hmlA.android.compose") version "2.1.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.5hmlA:conventions:2.1.3.3")
  }
}

apply(plugin = "io.github.5hmlA.android.compose")

Using the plugins DSL:

plugins {
  id "io.github.5hmlA.android.compose" version "2.1.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.5hmlA:conventions:2.1.3.3"
  }
}

apply plugin: "io.github.5hmlA.android.compose"

Learn how to apply plugins to subprojects