diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-06-07 22:48:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 17:18:17 +0000 |
commit | 7bbdfcf6f67da71f4e7feb2b6e0c0122ea2d8e4f (patch) | |
tree | 6954ecbe774ffc7cb5f48cc3a3ac8fa26146a8aa | |
parent | 4918e0dbfc40f4124dec51ed065caaceb957c411 (diff) |
Remove LeakCanary from snapshot builds (#1435)
-rw-r--r-- | app/build.gradle.kts | 5 |
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) |