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 1.3

1.3

Created 26 May 2024.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.5hmlA:conventions:1.3")
      }
    }
    
    apply(plugin = "io.github.5hmlA.android.compose")
  • Applying plugins to all subprojects .