搜索Gradle插件

io.github.5hmlA.android.compose

所有者: 江祖贇

build.gradle的android compose配置,必要的Compose相关设置将自动设置

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

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

版本 2.1.8(最新版)

2.1.8

创建于2024年8月1日。

build.gradle的android compose配置,必要的Compose相关设置将自动设置

使用 插件DSL

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

使用 旧版插件应用

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

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

使用 插件DSL

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

使用 旧版插件应用

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

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

学习如何将插件应用到子项目中