diff options
Diffstat (limited to 'android/lib/intent-provider')
| -rw-r--r-- | android/lib/intent-provider/build.gradle.kts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/android/lib/intent-provider/build.gradle.kts b/android/lib/intent-provider/build.gradle.kts index f63a9c7f69..ca88d7f26f 100644 --- a/android/lib/intent-provider/build.gradle.kts +++ b/android/lib/intent-provider/build.gradle.kts @@ -1,14 +1,14 @@ plugins { - id(Dependencies.Plugin.androidLibraryId) - id(Dependencies.Plugin.kotlinAndroidId) - id(Dependencies.Plugin.kotlinParcelizeId) + alias(libs.plugins.android.library) + alias(libs.plugins.kotlin.android) + alias(libs.plugins.kotlin.parcelize) } android { namespace = "net.mullvad.mullvadvpn.lib.intent" - compileSdk = Versions.Android.compileSdkVersion + compileSdk = Versions.compileSdkVersion - defaultConfig { minSdk = Versions.Android.minSdkVersion } + defaultConfig { minSdk = Versions.minSdkVersion } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 @@ -26,6 +26,6 @@ android { } dependencies { - implementation(Dependencies.Kotlin.stdlib) - implementation(Dependencies.KotlinX.coroutinesAndroid) + implementation(libs.kotlin.stdlib) + implementation(libs.kotlinx.coroutines.android) } |
