diff options
Diffstat (limited to 'app/build.gradle.kts')
-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) |