summaryrefslogtreecommitdiffhomepage
path: root/android/lib/endpoint
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2023-05-12 16:02:55 +0200
committerAlbin <albin@mullvad.net>2023-09-21 18:30:51 +0200
commit8066e42cff442207830ed05e6db1395e34c2d1db (patch)
treefac0fbd6bd1c28204014d5b57ef3cd6cddf0cd89 /android/lib/endpoint
parent2b2dbded60ba1e03112781dc6a04705e08286805 (diff)
downloadmullvadvpn-8066e42cff442207830ed05e6db1395e34c2d1db.tar.xz
mullvadvpn-8066e42cff442207830ed05e6db1395e34c2d1db.zip
Apply automatic formatting and cleanup of gradle files
Diffstat (limited to 'android/lib/endpoint')
-rw-r--r--android/lib/endpoint/build.gradle.kts12
1 files changed, 3 insertions, 9 deletions
diff --git a/android/lib/endpoint/build.gradle.kts b/android/lib/endpoint/build.gradle.kts
index 282d9df76a..f46c70c7d7 100644
--- a/android/lib/endpoint/build.gradle.kts
+++ b/android/lib/endpoint/build.gradle.kts
@@ -8,18 +8,14 @@ android {
namespace = "net.mullvad.mullvadvpn.lib.endpoint"
compileSdk = Versions.Android.compileSdkVersion
- defaultConfig {
- minSdk = Versions.Android.minSdkVersion
- }
+ defaultConfig { minSdk = Versions.Android.minSdkVersion }
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
- kotlinOptions {
- jvmTarget = Versions.jvmTarget
- }
+ kotlinOptions { jvmTarget = Versions.jvmTarget }
lint {
lintConfig = file("${rootProject.projectDir}/config/lint.xml")
@@ -28,6 +24,4 @@ android {
}
}
-dependencies {
- implementation(Dependencies.Kotlin.stdlib)
-}
+dependencies { implementation(Dependencies.Kotlin.stdlib) }