搜索Gradle插件

版本 1.0.1 (最新)

1.0.1

创建于2021年4月29日。

通过Gradle插件进行主题连接

使用插件 DSL

plugins {
  id("com.github.ouchadam.themr") version "1.0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.ouchadam:themr:1.0.1")
  }
}

apply(plugin = "com.github.ouchadam.themr")

使用插件 DSL

plugins {
  id "com.github.ouchadam.themr" version "1.0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.ouchadam:themr:1.0.1"
  }
}

apply plugin: "com.github.ouchadam.themr"

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