搜索Gradle插件

版本 0.19.1(最新版)

0.19.1

创建于 2024 年 7 月 31 日。

插件可减少Android库构建脚本中的样板内容

使用 插件DSL

plugins {
  id("com.redmadrobot.android-library") version "0.19.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.redmadrobot.build:infrastructure-android:0.19.1")
  }
}

apply(plugin = "com.redmadrobot.android-library")

使用 插件DSL

plugins {
  id "com.redmadrobot.android-library" version "0.19.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.redmadrobot.build:infrastructure-android:0.19.1"
  }
}

apply plugin: "com.redmadrobot.android-library"

了解如何应用插件到子项目