搜索Gradle插件

版本:1.0.7(最新版)

1.0.7

创建时间:2021年11月5日。

随着JCenter永久重定向到Maven Central,该插件版本将不再解析,因为它仅使用在JCenter中可找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Android的hotfix插件

使用plugins DSL

plugins {
  id("com.daofeng.auto-patch-plugin") version "1.0.7"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.daofeng.hotfix:auto-patch-plugin:1.0.7")
  }
}

apply(plugin = "com.daofeng.auto-patch-plugin")

使用plugins DSL

plugins {
  id "com.daofeng.auto-patch-plugin" version "1.0.7"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.daofeng.hotfix:auto-patch-plugin:1.0.7"
  }
}

apply plugin: "com.daofeng.auto-patch-plugin"

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