Files
svxhomyak/app/build.gradle.kts
ua1zbe ea36319fe3 Add connected nodes list dialog (v1.0.4)
- Tap callsign on main screen shows dialog with connected nodes
- SvxService tracks node list: ServerInfo + NODE_JOINED/NODE_LEFT events
- Bump to 1.0.4
2026-08-14 13:05:05 +03:00

54 lines
984 B
Kotlin

plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "ru.ua1zbe.svxremote"
compileSdk = 34
defaultConfig {
applicationId = "ru.ua1zbe.svxremote"
minSdk = 26
targetSdk = 34
versionCode = 6
versionName = "1.0.4"
}
buildTypes {
release {
isMinifyEnabled = false
}
}
lint {
checkReleaseBuilds = false
abortOnError = false
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}
kotlin {
compilerOptions {
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
}
}
dependencies {
testImplementation("junit:junit:4.13.2")
}
android {
testOptions {
unitTests {
isReturnDefaultValues = true
all {
it.maxHeapSize = "256m"
}
}
}
}