搜索 Gradle 插件

io.github.5hmlA.android

所有者: 江祖贇

android build common config for build.gradle, this will auto add android necessary dependencies

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

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

版本 2.1.8 (最新)

2.1.8

创建于 2024 年 8 月 1 日。

android build common config for build.gradle, this will auto add android necessary dependencies

使用 插件 DSL

plugins {
  id("io.github.5hmlA.android") 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")

使用 插件 DSL

plugins {
  id "io.github.5hmlA.android" 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"

了解如何将插件应用于子项目