mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2025-02-21 12:53:12 +01:00
14 lines
318 B
Kotlin
14 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)
|
|
}
|
|
}
|