aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt b/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
index 9cfe5618..52cb8c06 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
@@ -29,12 +29,9 @@ import timber.log.Timber.DebugTree
class FrostApp : Application() {
override fun onCreate() {
- val core = CrashlyticsCore.Builder().disabled(BuildConfig.DEBUG).build()
- Fabric.with(this, core, Answers())
if (BuildConfig.DEBUG) Timber.plant(DebugTree())
else {
-
- Fabric.with(this, Crashlytics())
+ Fabric.with(this, Crashlytics(), Answers())
Timber.plant(CrashReportingTree())
}
FlowManager.init(FlowConfig.Builder(this).build())