From 8e539bebeae5e4895eb36d65b6966abedf253ab6 Mon Sep 17 00:00:00 2001 From: arkon Date: Mon, 9 Mar 2020 14:04:16 -0400 Subject: [PATCH] Add (disabled) dependency on LeakCanary for debugging memory leaks --- app/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 129f5edfaf..df7759bec4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -247,6 +247,9 @@ dependencies { final coroutines_version = '1.3.4' implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version" + + // For detecting memory leaks; see https://square.github.io/leakcanary/ +// debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.2' } buildscript {