summaryrefslogtreecommitdiffhomepage
path: root/android/app
diff options
context:
space:
mode:
authorDavid Göransson <david.goransson90@gmail.com>2023-12-14 16:02:07 +0100
committerAlbin <albin@mullvad.net>2023-12-14 16:53:22 +0100
commit0d4451264d129bc6bcc8ae30bf12dc807f8ab3bc (patch)
tree938f7c3568f094b31d374e94b515621542550962 /android/app
parent3eddc8dcafe314fcb218c999b8108bc4f5c03e13 (diff)
downloadmullvadvpn-0d4451264d129bc6bcc8ae30bf12dc807f8ab3bc.tar.xz
mullvadvpn-0d4451264d129bc6bcc8ae30bf12dc807f8ab3bc.zip
Add compose destinations navigation dependency
Diffstat (limited to 'android/app')
-rw-r--r--android/app/build.gradle.kts8
1 files changed, 6 insertions, 2 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index a3035f0a12..51673f611c 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -9,11 +9,12 @@ plugins {
id(Dependencies.Plugin.playPublisherId)
id(Dependencies.Plugin.kotlinAndroidId)
id(Dependencies.Plugin.kotlinParcelizeId)
+ id(Dependencies.Plugin.ksp) version Versions.Plugin.ksp
}
val repoRootPath = rootProject.projectDir.absoluteFile.parentFile.absolutePath
val extraAssetsDirectory = "${project.buildDir}/extraAssets"
-val defaultChangeLogAssetsDirectory = "$repoRootPath/android/src/main/play/release-notes/"
+val defaultChangelogAssetsDirectory = "$repoRootPath/android/src/main/play/release-notes/"
val extraJniDirectory = "${project.buildDir}/extraJni"
val credentialsPath = "${rootProject.projectDir}/credentials"
@@ -111,7 +112,7 @@ android {
getByName("main") {
val changelogDir =
gradleLocalProperties(rootProject.projectDir)
- .getOrDefault("OVERRIDE_CHANGELOG_DIR", defaultChangeLogAssetsDirectory)
+ .getOrDefault("OVERRIDE_CHANGELOG_DIR", defaultChangelogAssetsDirectory)
assets.srcDirs(extraAssetsDirectory, changelogDir)
jniLibs.srcDirs(extraJniDirectory)
@@ -337,6 +338,9 @@ dependencies {
implementation(Dependencies.Compose.uiController)
implementation(Dependencies.Compose.ui)
implementation(Dependencies.Compose.uiUtil)
+ implementation(Dependencies.Compose.destinations)
+ ksp(Dependencies.Compose.destinationsKsp)
+
implementation(Dependencies.jodaTime)
implementation(Dependencies.Koin.core)
implementation(Dependencies.Koin.android)