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.4.0
1.4.0
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"