aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-21 00:42:23 -0700
committerAllan Wang <me@allanwang.ca>2017-06-21 00:42:23 -0700
commit1ec75d0b2b7f746e2a0ae982b936fa4f566ec738 (patch)
tree007bc173c375146a4d5322dd513b156f39e917c4
parent50a7b483b9169ed435839ffc6c4b1953e2d034e5 (diff)
downloadfrost-1ec75d0b2b7f746e2a0ae982b936fa4f566ec738.tar.gz
frost-1ec75d0b2b7f746e2a0ae982b936fa4f566ec738.tar.bz2
frost-1ec75d0b2b7f746e2a0ae982b936fa4f566ec738.zip
Initialize fabric first
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt b/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
index d21915e7..d4f35a7e 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
@@ -48,8 +48,8 @@ class FrostApp : Application() {
Timber.plant(DebugTree())
// LeakCanary.enableDisplayLeakActivity(this)
} else {
- Crashlytics.setUserIdentifier("${Prefs.installDate}-${Prefs.identifier}")
Fabric.with(this, Crashlytics(), Answers())
+ Crashlytics.setUserIdentifier("${Prefs.installDate}-${Prefs.identifier}")
Timber.plant(CrashReportingTree())
}