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