com.daofeng.auto-patch-plugin
Owner: 752461670
A flug-in to hotfix for android
https://github.com/Meituan-Dianping/Robust
Sources: https://github.com/Meituan-Dianping/Robust
Version 1.0.7 (latest)
1.0.7
Created 05 November 2021.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
A flug-in to hotfix for android
Using the plugins DSL:
plugins {
id("com.daofeng.auto-patch-plugin") version "1.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.daofeng.hotfix:auto-patch-plugin:1.0.7")
}
}
apply(plugin = "com.daofeng.auto-patch-plugin")
Using the plugins DSL:
plugins {
id "com.daofeng.auto-patch-plugin" version "1.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.daofeng.hotfix:auto-patch-plugin:1.0.7"
}
}
apply plugin: "com.daofeng.auto-patch-plugin"