diff options
| author | Albin <albin@mullvad.net> | 2022-12-01 09:54:14 +0100 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2023-01-10 15:32:30 +0100 |
| commit | b2d7f0de38fa8c3f179acf05df5a87436942ed4d (patch) | |
| tree | c45c311f245385c79168ee84717afa4663ee8c5e /android/lib | |
| parent | 6e09d1941569d5138b961bb7d2d56526663ef1c8 (diff) | |
| download | mullvadvpn-b2d7f0de38fa8c3f179acf05df5a87436942ed4d.tar.xz mullvadvpn-b2d7f0de38fa8c3f179acf05df5a87436942ed4d.zip | |
Add empty project :lib:endpoint
Diffstat (limited to 'android/lib')
| -rw-r--r-- | android/lib/build.gradle.kts | 0 | ||||
| -rw-r--r-- | android/lib/endpoint/build.gradle.kts | 28 | ||||
| -rw-r--r-- | android/lib/endpoint/src/main/AndroidManifest.xml | 1 |
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 /> |
