Преглед на файлове

Add (disabled) dependency on LeakCanary for debugging memory leaks

arkon преди 5 години
родител
ревизия
8e539bebea
променени са 1 файла, в които са добавени 3 реда и са изтрити 0 реда
  1. 3 0
      app/build.gradle

+ 3 - 0
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 {