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)
49 lines
1.3 KiB
Kotlin
49 lines
1.3 KiB
Kotlin
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
|
|
plugins {
|
|
alias(libs.plugins.androidLibrary)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.zaneschepke.logcatter"
|
|
compileSdk = Constants.TARGET_SDK
|
|
|
|
defaultConfig {
|
|
minSdk = Constants.MIN_SDK
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro",
|
|
)
|
|
}
|
|
|
|
create(Constants.NIGHTLY) { initWith(getByName(Constants.RELEASE)) }
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlin { compilerOptions { jvmTarget = JvmTarget.JVM_17 } }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.material)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.androidx.junit)
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
|
|
|
implementation(libs.androidx.lifecycle.process)
|
|
// logging
|
|
implementation(libs.timber)
|
|
}
|