com.contentsquare.error.analysis.crash
Owner:
Contentsquare
Upload mapping file to deobfuscate crashes
https://docs.contentsquare.com/android-sdk-error-analysis/#adding-the-gradle-plugin
Sources: https://github.com/ContentSquare/cs-android-sdk
Version 1.2.0 (latest)
Created 19 June 2023.
Upload mapping file to deobfuscate crashes
Using the plugins DSL:
plugins {
id("com.contentsquare.error.analysis.crash") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.contentsquare.gradle:error-analysis-crash:1.2.0")
}
}
apply(plugin = "com.contentsquare.error.analysis.crash")
Using the plugins DSL:
plugins {
id "com.contentsquare.error.analysis.crash" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.contentsquare.gradle:error-analysis-crash:1.2.0"
}
}
apply plugin: "com.contentsquare.error.analysis.crash"