diff options
| author | Albin <albin@mullvad.net> | 2024-08-12 18:27:24 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2024-08-13 09:32:06 +0200 |
| commit | 2d2d41381419230f4d6b538509f03abc2cb034af (patch) | |
| tree | 0b6fe23b53c78c183f853aeb9ea4e122b757d15b /android/lib/theme | |
| parent | acd9d481f80c52cc8f9389e6ba2a8ad25599b200 (diff) | |
| download | mullvadvpn-2d2d41381419230f4d6b538509f03abc2cb034af.tar.xz mullvadvpn-2d2d41381419230f4d6b538509f03abc2cb034af.zip | |
Migrate to version catalogs
Diffstat (limited to 'android/lib/theme')
| -rw-r--r-- | android/lib/theme/build.gradle.kts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/android/lib/theme/build.gradle.kts b/android/lib/theme/build.gradle.kts index 33f094fba4..22387a5e8c 100644 --- a/android/lib/theme/build.gradle.kts +++ b/android/lib/theme/build.gradle.kts @@ -1,14 +1,14 @@ plugins { - id(Dependencies.Plugin.androidLibraryId) - id(Dependencies.Plugin.kotlinAndroidId) - id(Dependencies.Plugin.composeCompiler) version Versions.kotlin + alias(libs.plugins.android.library) + alias(libs.plugins.kotlin.android) + alias(libs.plugins.compose) } android { namespace = "net.mullvad.mullvadvpn.lib.theme" - compileSdk = Versions.Android.compileSdkVersion + compileSdk = Versions.compileSdkVersion - defaultConfig { minSdk = Versions.Android.minSdkVersion } + defaultConfig { minSdk = Versions.minSdkVersion } buildFeatures { compose = true } @@ -27,7 +27,7 @@ android { } dependencies { - implementation(Dependencies.Compose.material3) - implementation(Dependencies.Compose.ui) - implementation(Dependencies.Kotlin.stdlib) + implementation(libs.compose.material3) + implementation(libs.compose.ui) + implementation(libs.kotlin.stdlib) } |
