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