Search Gradle plugins

Version 0.1.0-SNAPSHOT (latest)

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"

Learn how to apply plugins to subprojects