mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-27 15:08:00 +01:00
17 lines
407 B
Kotlin
17 lines
407 B
Kotlin
package com.simplemobiletools.gallery
|
|
|
|
import android.app.Application
|
|
import com.squareup.leakcanary.LeakCanary
|
|
|
|
class App : Application() {
|
|
val USE_LEAK_CANARY = false
|
|
override fun onCreate() {
|
|
super.onCreate()
|
|
if (USE_LEAK_CANARY) {
|
|
if (LeakCanary.isInAnalyzerProcess(this)) {
|
|
return
|
|
}
|
|
LeakCanary.install(this)
|
|
}
|
|
}
|
|
}
|