搜索 Gradle 插件

版本 1.4.1(最新版)

1.4.1

创建日期:2020年1月29日。

为 rosberry android 工作流程的插件

使用 插件 DSL

plugins {
  id("com.rosberry.android.gradle.rawf") version "1.4.1"
}

使用 旧式插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.rosberry.android.gradle:rawf:1.4.1")
  }
}

apply(plugin = "com.rosberry.android.gradle.rawf")

使用 插件 DSL

plugins {
  id "com.rosberry.android.gradle.rawf" version "1.4.1"
}

使用 旧式插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.rosberry.android.gradle:rawf:1.4.1"
  }
}

apply plugin: "com.rosberry.android.gradle.rawf"

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