diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-21 00:42:23 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-21 00:42:23 -0700 |
commit | 1ec75d0b2b7f746e2a0ae982b936fa4f566ec738 (patch) | |
tree | 007bc173c375146a4d5322dd513b156f39e917c4 /app | |
parent | 50a7b483b9169ed435839ffc6c4b1953e2d034e5 (diff) | |
download | frost-1ec75d0b2b7f746e2a0ae982b936fa4f566ec738.tar.gz frost-1ec75d0b2b7f746e2a0ae982b936fa4f566ec738.tar.bz2 frost-1ec75d0b2b7f746e2a0ae982b936fa4f566ec738.zip |
Initialize fabric first
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt | 2 |
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()) } |