2017-04-17 20:31:50 +02:00
|
|
|
package com.simplemobiletools.gallery
|
|
|
|
|
|
|
|
import android.app.Application
|
2017-09-27 21:50:42 +02:00
|
|
|
import com.github.ajalt.reprint.core.Reprint
|
2017-04-17 20:31:50 +02:00
|
|
|
import com.squareup.leakcanary.LeakCanary
|
|
|
|
|
|
|
|
class App : Application() {
|
2017-07-09 09:28:26 +02:00
|
|
|
val USE_LEAK_CANARY = false
|
2017-04-17 20:31:50 +02:00
|
|
|
override fun onCreate() {
|
|
|
|
super.onCreate()
|
2017-09-27 21:50:42 +02:00
|
|
|
Reprint.initialize(this)
|
2017-07-09 09:28:26 +02:00
|
|
|
if (USE_LEAK_CANARY) {
|
|
|
|
if (LeakCanary.isInAnalyzerProcess(this)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
LeakCanary.install(this)
|
2017-04-17 20:31:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|