mirror of
https://github.com/wgtunnel/android.git
synced 2026-06-02 00:29:08 +02:00
82afe54b99
New features: - Full config view in quick format - Live tunnel config view in quick format - IPv4/IPv6 endpoint fallback and recovery - Improved DDNS handling - Improved realtime tunnel monitoring via wireguard-go callbacks handshake failures and success - Architecture change to always bring tunnels up with post tunnel bootstrapping for improved security and reliability with subsequent domain resolution and peer updates - Added support for DoT and custom DNS provider endpoints - Added support for Amnezia globals - Improved/shared config parser with desktop - Improved AndroidTV navigation What went away: - Kernel backend/mode - Ping monitoring (now redundant with the handshake monitoring)
30 lines
804 B
Kotlin
30 lines
804 B
Kotlin
import com.ncorti.ktfmt.gradle.tasks.KtfmtFormatTask
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.kotlinxSerialization) apply false
|
|
alias(libs.plugins.ksp) apply false
|
|
alias(libs.plugins.androidLibrary) apply false
|
|
alias(libs.plugins.compose.compiler) apply false
|
|
alias(libs.plugins.ktfmt)
|
|
alias(libs.plugins.licensee) apply false
|
|
alias(libs.plugins.jetbrains.kotlin.jvm) apply false
|
|
}
|
|
|
|
subprojects {
|
|
apply {
|
|
plugin(rootProject.libs.plugins.ktfmt.get().pluginId)
|
|
}
|
|
|
|
tasks.register<KtfmtFormatTask>("format") {
|
|
description = "Format Kotlin code style deviations."
|
|
source = project.fileTree(rootDir)
|
|
include("**/*.kt")
|
|
exclude("**/build/**", ".*generated.*", "**/amneziawg-tools/**", "**/.gradle/**")
|
|
}
|
|
|
|
ktfmt {
|
|
kotlinLangStyle()
|
|
}
|
|
}
|