From 7bbdfcf6f67da71f4e7feb2b6e0c0122ea2d8e4f Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 7 Jun 2021 22:48:17 +0530 Subject: [PATCH] Remove LeakCanary from snapshot builds (#1435) --- app/build.gradle.kts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a3a4554a2..c6440adb7 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -125,14 +125,13 @@ dependencies { implementation(libs.thirdparty.timberkt) if (isSnapshot()) { - implementation(libs.thirdparty.leakcanary) implementation(libs.thirdparty.whatthestack) } else { - debugImplementation(libs.thirdparty.leakcanary) debugImplementation(libs.thirdparty.whatthestack) } - "nonFreeImplementation"(libs.thirdparty.nonfree.googlePlayAuthApiPhone) + debugImplementation(libs.thirdparty.leakcanary) + add("nonFreeImplementation", libs.thirdparty.nonfree.googlePlayAuthApiPhone) androidTestImplementation(libs.bundles.testDependencies) androidTestImplementation(libs.bundles.androidTestDependencies)