Search Gradle plugins

Version 1.4.0 (latest)

Created 27 March 2024.

Upload mapping file to deobfuscate crashes

Using the plugins DSL:

plugins {
  id("com.contentsquare.error.analysis.crash") version "1.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.contentsquare.gradle:error-analysis-crash:1.4.0")
  }
}

apply(plugin = "com.contentsquare.error.analysis.crash")

Using the plugins DSL:

plugins {
  id "com.contentsquare.error.analysis.crash" version "1.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.contentsquare.gradle:error-analysis-crash:1.4.0"
  }
}

apply plugin: "com.contentsquare.error.analysis.crash"

Learn how to apply plugins to subprojects