remove the use_leak_canary constant

This commit is contained in:
tibbi
2017-12-03 23:21:24 +01:00
parent eeb1077fc2
commit 7f69a0af57
2 changed files with 1 additions and 6 deletions

View File

@ -1,14 +1,13 @@
package com.simplemobiletools.camera
import android.app.Application
import com.simplemobiletools.camera.BuildConfig.USE_LEAK_CANARY
import com.simplemobiletools.commons.extensions.checkUseEnglish
import com.squareup.leakcanary.LeakCanary
class App : Application() {
override fun onCreate() {
super.onCreate()
if (USE_LEAK_CANARY) {
if (BuildConfig.DEBUG) {
if (LeakCanary.isInAnalyzerProcess(this)) {
return
}