summaryrefslogtreecommitdiffhomepage
path: root/android/lib
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2022-12-01 09:54:14 +0100
committerAlbin <albin@mullvad.net>2023-01-10 15:32:30 +0100
commitb2d7f0de38fa8c3f179acf05df5a87436942ed4d (patch)
treec45c311f245385c79168ee84717afa4663ee8c5e /android/lib
parent6e09d1941569d5138b961bb7d2d56526663ef1c8 (diff)
downloadmullvadvpn-b2d7f0de38fa8c3f179acf05df5a87436942ed4d.tar.xz
mullvadvpn-b2d7f0de38fa8c3f179acf05df5a87436942ed4d.zip
Add empty project :lib:endpoint
Diffstat (limited to 'android/lib')
-rw-r--r--android/lib/build.gradle.kts0
-rw-r--r--android/lib/endpoint/build.gradle.kts28
-rw-r--r--android/lib/endpoint/src/main/AndroidManifest.xml1
3 files changed, 29 insertions, 0 deletions
diff --git a/android/lib/build.gradle.kts b/android/lib/build.gradle.kts
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/android/lib/build.gradle.kts
diff --git a/android/lib/endpoint/build.gradle.kts b/android/lib/endpoint/build.gradle.kts
new file mode 100644
index 0000000000..d289749704
--- /dev/null
+++ b/android/lib/endpoint/build.gradle.kts
@@ -0,0 +1,28 @@
+plugins {
+ id(Dependencies.Plugin.androidLibraryId)
+ id(Dependencies.Plugin.kotlinAndroidId)
+ id(Dependencies.Plugin.kotlinParcelizeId)
+}
+
+android {
+ namespace = "net.mullvad.mullvadvpn.lib.endpoint"
+ compileSdk = Versions.Android.compileSdkVersion
+
+ defaultConfig {
+ minSdk = Versions.Android.minSdkVersion
+ targetSdk = Versions.Android.targetSdkVersion
+ }
+
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_1_8
+ targetCompatibility = JavaVersion.VERSION_1_8
+ }
+
+ kotlinOptions {
+ jvmTarget = Versions.jvmTarget
+ }
+}
+
+dependencies {
+ implementation(Dependencies.Kotlin.stdlib)
+}
diff --git a/android/lib/endpoint/src/main/AndroidManifest.xml b/android/lib/endpoint/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..cc947c5679
--- /dev/null
+++ b/android/lib/endpoint/src/main/AndroidManifest.xml
@@ -0,0 +1 @@
+<manifest />