io.github.farimarwat.zerocrash
Owner: Farman Ullah
Plugin for avoid crashes
https://github.com/farimarwat/PandaSpector
Sources: https://github.com/farimarwat/PandaSpector
Version 1.0 (latest)
1.0
Created 25 April 2023.
Plugin for avoid crashes
Using the plugins DSL:
plugins {
id("io.github.farimarwat.zerocrash") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.farimarwat:ZeroCrashPlugin:1.0")
}
}
apply(plugin = "io.github.farimarwat.zerocrash")
Using the plugins DSL:
plugins {
id "io.github.farimarwat.zerocrash" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.farimarwat:ZeroCrashPlugin:1.0"
}
}
apply plugin: "io.github.farimarwat.zerocrash"