Initial commit: SVXHomyak - Android client for SVXLink reflectors

This commit is contained in:
ua1zbe
2026-08-13 13:33:17 +03:00
commit f924c4cc4a
29 changed files with 2528 additions and 0 deletions

46
app/build.gradle.kts Normal file
View File

@@ -0,0 +1,46 @@
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 = 1
versionName = "1.0"
}
buildTypes {
release {
isMinifyEnabled = 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.all {
it.maxHeapSize = "256m"
}
}
}