aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2021-06-07 22:48:17 +0530
committerGitHub <noreply@github.com>2021-06-07 17:18:17 +0000
commit7bbdfcf6f67da71f4e7feb2b6e0c0122ea2d8e4f (patch)
tree6954ecbe774ffc7cb5f48cc3a3ac8fa26146a8aa
parent4918e0dbfc40f4124dec51ed065caaceb957c411 (diff)
Remove LeakCanary from snapshot builds (#1435)
-rw-r--r--app/build.gradle.kts5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index a3a4554a..c6440adb 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)