summaryrefslogtreecommitdiffhomepage
path: root/android/app
diff options
context:
space:
mode:
authorJonatan Rhodin <jonatan.rhodin@mullvad.net>2025-05-05 11:02:33 +0200
committerJonatan Rhodin <jonatan.rhodin@mullvad.net>2025-05-05 11:02:33 +0200
commitf55b16817f443098eb3ee0f38076b77fd224e292 (patch)
treecaa75998ca09d5c47aaa2992de87e62bc7edc86a /android/app
parent7b428955d67dca0d9d964906ccf25a1d4604d0b3 (diff)
parent0389dbba348d9f2c48e0bddbc939a7d04ae7aa02 (diff)
downloadmullvadvpn-f55b16817f443098eb3ee0f38076b77fd224e292.tar.xz
mullvadvpn-f55b16817f443098eb3ee0f38076b77fd224e292.zip
Merge branch 'remove-permissions-that-are-not-required-by-the-app-droid-1976'
Diffstat (limited to 'android/app')
-rw-r--r--android/app/build.gradle.kts8
1 files changed, 7 insertions, 1 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index 881e62b219..a88b9ddcb8 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -394,7 +394,13 @@ dependencies {
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.datastore)
implementation(libs.androidx.coresplashscreen)
- implementation(libs.androidx.credentials)
+ implementation(libs.androidx.credentials) {
+ // This dependency adds a lot of unused permissions to the app.
+ // It is not used so let's exclude it.
+ // Unfortunately, this is not possible to do using libs.version.toml
+ // https://github.com/gradle/gradle/issues/26367#issuecomment-2120830998
+ exclude("androidx.biometric", "biometric")
+ }
implementation(libs.androidx.ktx)
implementation(libs.androidx.lifecycle.runtime)
implementation(libs.androidx.lifecycle.viewmodel)