cn.nikeo.reparatur
Owner: xianxueliang
A gradle plugin that helps you fix the crash of webview in Android Lollipop.
https://github.com/nikeorever/reparatur
Sources: https://github.com/nikeorever/reparatur
Version 0.1.0-SNAPSHOT (latest)
0.1.0-SNAPSHOT
Created 04 October 2020.
A gradle plugin that helps you fix the crash of webview in Android Lollipop.
Using the plugins DSL:
plugins {
id("cn.nikeo.reparatur") version "0.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.cn.nikeo.reparatur:gradle-plugin:0.1.0-SNAPSHOT")
}
}
apply(plugin = "cn.nikeo.reparatur")
Using the plugins DSL:
plugins {
id "cn.nikeo.reparatur" version "0.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.cn.nikeo.reparatur:gradle-plugin:0.1.0-SNAPSHOT"
}
}
apply plugin: "cn.nikeo.reparatur"