Search Gradle plugins

cn.nikeo.reparatur

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)

Created 04 October 2020.

A gradle plugin that helps you fix the crash of webview in Android Lollipop.

Add this plugin to your build using the plugins DSL:

plugins {
  id("cn.nikeo.reparatur") version "0.1.0-SNAPSHOT"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("cn.nikeo.reparatur:cn.nikeo.reparatur.gradle.plugin:0.1.0-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("cn.nikeo.reparatur")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("cn.nikeo.reparatur:cn.nikeo.reparatur.gradle.plugin:0.1.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "cn.nikeo.reparatur")
  • Applying plugins to all subprojects .