summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Göransson <david.goransson@mullvad.net>2025-03-01 12:57:57 +0100
committerDavid Göransson <david.goransson@mullvad.net>2025-03-07 09:07:43 +0100
commitefc0e8ab03e87c32b1599bd23c24cbe5e5f01fd3 (patch)
treea8fa93e630dbbc84aa7ee88f8fc14fdf3bd86f05
parent5e8dfc2adf9bdd3b2b886c7c927fcca2012559db (diff)
downloadmullvadvpn-efc0e8ab03e87c32b1599bd23c24cbe5e5f01fd3.tar.xz
mullvadvpn-efc0e8ab03e87c32b1599bd23c24cbe5e5f01fd3.zip
Add Androidx credentials dependency
-rw-r--r--android/app/build.gradle.kts3
-rw-r--r--android/gradle/libs.versions.toml2
2 files changed, 4 insertions, 1 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index d73f673626..51d91ad6b9 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -378,8 +378,9 @@ dependencies {
implementation(libs.commons.validator)
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.datastore)
- implementation(libs.androidx.ktx)
implementation(libs.androidx.coresplashscreen)
+ implementation(libs.androidx.credentials)
+ implementation(libs.androidx.ktx)
implementation(libs.androidx.lifecycle.runtime)
implementation(libs.androidx.lifecycle.viewmodel)
implementation(libs.androidx.lifecycle.runtime.compose)
diff --git a/android/gradle/libs.versions.toml b/android/gradle/libs.versions.toml
index 69abe85c2e..29a3c3e105 100644
--- a/android/gradle/libs.versions.toml
+++ b/android/gradle/libs.versions.toml
@@ -12,6 +12,7 @@ android-volley = "1.2.1"
androidx-activitycompose = "1.10.1"
androidx-appcompat = "1.7.0"
androidx-ktx = "1.15.0"
+androidx-credentials = "1.3.0"
androidx-coresplashscreen = "1.1.0-rc01"
androidx-datastore = "1.1.3"
androidx-espresso = "3.6.1"
@@ -85,6 +86,7 @@ android-volley = { module = "com.android.volley:volley", version.ref = "android-
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activitycompose" }
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" }
androidx-coresplashscreen = { module = "androidx.core:core-splashscreen", version.ref = "androidx-coresplashscreen" }
+androidx-credentials = { module = "androidx.credentials:credentials", version.ref = "androidx-credentials" }
androidx-datastore = { module = "androidx.datastore:datastore", version.ref = "androidx-datastore" }
androidx-espresso = { module = "androidx.test.espresso:espresso-core", version.ref = "androidx-espresso" }
androidx-ktx = { module = "androidx.core:core-ktx", version.ref = "androidx-ktx" }