搜索 Gradle 插件

版本 0.0.1 (最新版本)

0.0.1

创建于 2021 年 7 月 12 日。

一个在 Android 项目中查找资源覆盖的插件

使用 插件 DSL

plugins {
  id("com.github.bendezu.resourceoverride") version "0.0.1"
}

使用 旧的插件应用程序

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

apply(plugin = "com.github.bendezu.resourceoverride")

使用 插件 DSL

plugins {
  id "com.github.bendezu.resourceoverride" version "0.0.1"
}

使用 旧的插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.bendezu:plugin:0.0.1"
  }
}

apply plugin: "com.github.bendezu.resourceoverride"

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