Initial commit: Компас Цель — Android приложение для навигации по GPS

This commit is contained in:
ua1zbe
2026-08-11 14:11:07 +03:00
commit e92e7b06a2
25 changed files with 1192 additions and 0 deletions

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

@@ -0,0 +1,36 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "com.ua1zbe.compass"
compileSdk = 34
defaultConfig {
applicationId = "com.ua1zbe.compass"
minSdk = 24
targetSdk = 34
versionCode = 1
versionName = "1.0"
}
buildTypes {
release {
isMinifyEnabled = false
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib")
}