aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle.kts
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-10-24 14:51:33 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2022-10-24 14:51:33 +0530
commit816aca5ba18446f2d14cb993d47c6119a548135b (patch)
treea7d8d946d92f745282d3123cebe95ab69f5311d3 /app/build.gradle.kts
parentedc110dcc148be7362c4e48ffbff151764afc966 (diff)
refactor: use generated accessors for flavor dependencies
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r--app/build.gradle.kts6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index 4cb4685b..c099a2da 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -107,9 +107,9 @@ dependencies {
}
debugImplementation(libs.thirdparty.leakcanary)
- add("nonFreeImplementation", libs.thirdparty.nonfree.googlePlayAuthApiPhone)
- add("nonFreeImplementation", libs.thirdparty.nonfree.sentry)
- add("freeImplementation", projects.sentryStub)
+ nonFreeImplementation(libs.thirdparty.nonfree.googlePlayAuthApiPhone)
+ nonFreeImplementation(libs.thirdparty.nonfree.sentry)
+ freeImplementation(projects.sentryStub)
testImplementation(libs.testing.robolectric)
testImplementation(libs.testing.sharedPrefsMock)