From bed2f2e5d61ab8a4d3c0e4dabe6d60ffc3d1c1ec Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 3 May 2023 00:43:18 +0530 Subject: gradle: convert build files to Kotlin Signed-off-by: Harsh Shandilya --- ui/build.gradle | 81 --------------------------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 ui/build.gradle (limited to 'ui/build.gradle') diff --git a/ui/build.gradle b/ui/build.gradle deleted file mode 100644 index dd2abe8d..00000000 --- a/ui/build.gradle +++ /dev/null @@ -1,81 +0,0 @@ -import org.jetbrains.kotlin.gradle.tasks.KotlinCompile - -plugins { - id 'com.android.application' - id 'org.jetbrains.kotlin.android' - id 'org.jetbrains.kotlin.kapt' -} - -version wireguardVersionName -group groupName - -android { - compileSdk 33 - buildFeatures { - buildConfig = true - dataBinding = true - viewBinding = true - } - namespace = 'com.wireguard.android' - defaultConfig { - applicationId 'com.wireguard.android' - minSdkVersion 21 - targetSdkVersion 33 - versionCode wireguardVersionCode - versionName wireguardVersionName - buildConfigField 'int', 'MIN_SDK_VERSION', "$minSdkVersion.apiLevel" - } - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - coreLibraryDesugaringEnabled = true - } - buildTypes { - release { - minifyEnabled true - shrinkResources true - proguardFiles "proguard-android-optimize.txt" - packagingOptions { - exclude "DebugProbesKt.bin" - exclude "kotlin-tooling-metadata.json" - } - } - debug { - applicationIdSuffix ".debug" - versionNameSuffix "-debug" - } - } - lint { - disable 'LongLogTag' - warning 'MissingTranslation', 'ImpliedQuantity' - } -} - -dependencies { - implementation project(":tunnel") - implementation "androidx.activity:activity-ktx:$activityVersion" - implementation "androidx.annotation:annotation:$annotationsVersion" - implementation "androidx.appcompat:appcompat:$appcompatVersion" - implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion" - implementation "androidx.coordinatorlayout:coordinatorlayout:$coordinatorLayoutVersion" - implementation "androidx.biometric:biometric:$biometricVersion" - implementation "androidx.core:core-ktx:$coreKtxVersion" - implementation "androidx.fragment:fragment-ktx:$fragmentVersion" - implementation "androidx.preference:preference-ktx:$preferenceVersion" - implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleRuntimeKtxVersion" - implementation "androidx.datastore:datastore-preferences:$datastoreVersion" - implementation "com.google.android.material:material:$materialComponentsVersion" - implementation "com.journeyapps:zxing-android-embedded:$zxingEmbeddedVersion" - implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion" - implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion" - coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:$desugarVersion" -} - -tasks.withType(JavaCompile).configureEach { - options.compilerArgs << '-Xlint:unchecked' - options.deprecation = true -} - -tasks.withType(KotlinCompile).configureEach { - kotlinOptions.jvmTarget = JavaVersion.VERSION_1_8 -} -- cgit v1.2.3