summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
authorDavid Göransson <david.goransson90@gmail.com>2024-02-13 16:25:49 +0100
committerDavid Göransson <david.goransson90@gmail.com>2024-02-15 13:58:34 +0100
commit9898a3c95c3af4892ddf3e0c8beadb57ba6db6ed (patch)
tree2c77f6a3ab2cb21ef926e24f35c8d0d6aa00048d /android
parentfb3177914d8e2d6b4df5042db7eef3ea73358e3e (diff)
downloadmullvadvpn-9898a3c95c3af4892ddf3e0c8beadb57ba6db6ed.tar.xz
mullvadvpn-9898a3c95c3af4892ddf3e0c8beadb57ba6db6ed.zip
Add dependency to map module
Diffstat (limited to 'android')
-rw-r--r--android/app/build.gradle.kts1
-rw-r--r--android/buildSrc/src/main/kotlin/Dependencies.kt1
2 files changed, 2 insertions, 0 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index 3932e220f5..fbbe55cf0b 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -320,6 +320,7 @@ dependencies {
implementation(project(Dependencies.Mullvad.talpidLib))
implementation(project(Dependencies.Mullvad.themeLib))
implementation(project(Dependencies.Mullvad.paymentLib))
+ implementation(project(Dependencies.Mullvad.mapLib))
// Play implementation
playImplementation(project(Dependencies.Mullvad.billingLib))
diff --git a/android/buildSrc/src/main/kotlin/Dependencies.kt b/android/buildSrc/src/main/kotlin/Dependencies.kt
index 055bf72d12..af4f414b0c 100644
--- a/android/buildSrc/src/main/kotlin/Dependencies.kt
+++ b/android/buildSrc/src/main/kotlin/Dependencies.kt
@@ -99,6 +99,7 @@ object Dependencies {
const val commonTestLib = ":lib:common-test"
const val billingLib = ":lib:billing"
const val paymentLib = ":lib:payment"
+ const val mapLib = ":lib:map"
}
object Plugin {