summaryrefslogtreecommitdiffhomepage
path: root/android/app
diff options
context:
space:
mode:
authorJonatan Rhodin <jonatan.rhodin@mullvad.net>2023-12-04 09:58:15 +0100
committerJonatan Rhodin <jonatan.rhodin@mullvad.net>2024-01-02 11:40:59 +0100
commit567ee21cae56c90daeb0ef6bd7708e75a40feba2 (patch)
tree1b300ef33f394e2a60f0e9d707bc1de6a06ab9e4 /android/app
parentcdd8c97f878c20a7a6457bdeeef9b2abce0a737d (diff)
downloadmullvadvpn-567ee21cae56c90daeb0ef6bd7708e75a40feba2.tar.xz
mullvadvpn-567ee21cae56c90daeb0ef6bd7708e75a40feba2.zip
Remove unused dependencies
Diffstat (limited to 'android/app')
-rw-r--r--android/app/build.gradle.kts12
1 files changed, 1 insertions, 11 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index 51673f611c..a49db33415 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -182,8 +182,7 @@ android {
val enableInAppVersionNotifications =
gradleLocalProperties(rootProject.projectDir)
- .getProperty("ENABLE_IN_APP_VERSION_NOTIFICATIONS")
- ?: "true"
+ .getProperty("ENABLE_IN_APP_VERSION_NOTIFICATIONS") ?: "true"
buildConfigField(
"boolean",
@@ -321,19 +320,13 @@ dependencies {
// Play implementation
playImplementation(project(Dependencies.Mullvad.billingLib))
- implementation(Dependencies.androidMaterial)
implementation(Dependencies.commonsValidator)
- implementation(Dependencies.AndroidX.appcompat)
implementation(Dependencies.AndroidX.constraintlayout)
- implementation(Dependencies.AndroidX.coordinatorlayout)
implementation(Dependencies.AndroidX.coreKtx)
- implementation(Dependencies.AndroidX.fragmentKtx)
implementation(Dependencies.AndroidX.lifecycleRuntimeKtx)
implementation(Dependencies.AndroidX.lifecycleViewmodelKtx)
- implementation(Dependencies.AndroidX.recyclerview)
implementation(Dependencies.Compose.constrainLayout)
implementation(Dependencies.Compose.foundation)
- implementation(Dependencies.Compose.viewModelLifecycle)
implementation(Dependencies.Compose.material3)
implementation(Dependencies.Compose.uiController)
implementation(Dependencies.Compose.ui)
@@ -358,7 +351,6 @@ dependencies {
// Test dependencies
testImplementation(project(Dependencies.Mullvad.commonTestLib))
- testImplementation(Dependencies.Koin.test)
testImplementation(Dependencies.Kotlin.test)
testImplementation(Dependencies.KotlinX.coroutinesTest)
testImplementation(Dependencies.MockK.core)
@@ -370,8 +362,6 @@ dependencies {
// Fixes: https://github.com/android/android-test/issues/1589
debugImplementation(Dependencies.AndroidX.testMonitor)
debugImplementation(Dependencies.Compose.testManifest)
- androidTestImplementation(Dependencies.AndroidX.espressoContrib)
- androidTestImplementation(Dependencies.AndroidX.espressoCore)
androidTestImplementation(Dependencies.Compose.junit)
androidTestImplementation(Dependencies.Koin.test)
androidTestImplementation(Dependencies.Kotlin.test)