com.flurry.android.symbols
Owner: Clay Reimann
Send ProGuard information to Flurry to allow deobfuscation of received stack traces
https://github.com/flurry/upload-clients
Sources: https://github.com/flurry/upload-clients
Version 7.3.0 (latest)
7.3.0
Created 01 December 2022.
Send ProGuard information to Flurry to allow deobfuscation of received stack traces
Using the plugins DSL:
plugins {
id("com.flurry.android.symbols") version "7.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.flurry:symbol-upload:7.3.0")
}
}
apply(plugin = "com.flurry.android.symbols")
Using the plugins DSL:
plugins {
id "com.flurry.android.symbols" version "7.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.flurry:symbol-upload:7.3.0"
}
}
apply plugin: "com.flurry.android.symbols"