From a598ac399337237ee05ed775283ba6e0f4f4db45 Mon Sep 17 00:00:00 2001 From: arkon Date: Sun, 18 Apr 2021 12:55:17 -0400 Subject: [PATCH] Update LeakCanary --- app/build.gradle.kts | 2 +- gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ad6d185e36..35caa74c9f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -265,7 +265,7 @@ dependencies { implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion") // For detecting memory leaks; see https://square.github.io/leakcanary/ - // debugImplementation("com.squareup.leakcanary:leakcanary-android:2.6") + // debugImplementation("com.squareup.leakcanary:leakcanary-android:2.7") } tasks { diff --git a/gradle.properties b/gradle.properties index 8e0bd5d29b..5204dbd92c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,7 @@ # The setting is particularly useful for tweaking memory settings. # Default value: -Xmx10248m -XX:MaxPermSize=256m # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -org.gradle.jvmargs=-Xmx2048m +org.gradle.jvmargs=-Xmx3072m # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit