245055d9d2
- Replace the static threat circle with an osmdroid-backed map centered on the user, with red ALPR pins and a tier-color scrim. Falls back to the muted gradient when idle or before the first location fix arrives. - Add DetectionSource.MIC: BLE/WiFi candidate path for Amazon Echo/Ring (Lab126 OUIs + AVS service UUID 0xFE03), Google Nest/ Home/Chromecast (Google OUIs + mfg id 0x00E0), and generic Chinese hidden-cam vendors. Score capped at 84 (ORANGE) so RED stays reserved for ALPR/Axon-grade evidence. Toggleable in Settings; piggybacks on the BLE+WiFi scanners — no new radio. - Drop the "[DЯΣΛMMΛKΣЯ]" stylized branding for a clean OVERWATCH header (notification channel + app label updated to match). - Fix DeFlock geo-pin tap doing nothing: resolveActivity returns null on Android 11+ without a <queries> entry even when Maps is installed. Drop the pre-check, try/catch ActivityNotFoundException, fall back to a maps.google.com URL if no geo: handler exists.
68 lines
1.6 KiB
Kotlin
68 lines
1.6 KiB
Kotlin
plugins {
|
|
alias(libs.plugins.android.application)
|
|
alias(libs.plugins.kotlin.android)
|
|
alias(libs.plugins.kotlin.compose)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.soulstone.overwatch"
|
|
compileSdk = 35
|
|
|
|
defaultConfig {
|
|
applicationId = "org.soulstone.overwatch"
|
|
minSdk = 26
|
|
targetSdk = 35
|
|
versionCode = 9
|
|
versionName = "0.2.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
buildConfig = true
|
|
}
|
|
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
|
implementation(libs.androidx.lifecycle.service)
|
|
implementation(libs.androidx.activity.compose)
|
|
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
implementation(libs.androidx.compose.ui)
|
|
implementation(libs.androidx.compose.ui.graphics)
|
|
implementation(libs.androidx.compose.ui.tooling.preview)
|
|
implementation(libs.androidx.compose.material3)
|
|
implementation(libs.androidx.compose.material.icons.extended)
|
|
|
|
implementation(libs.play.services.location)
|
|
implementation(libs.osmdroid.android)
|
|
|
|
debugImplementation(libs.androidx.compose.ui.tooling)
|
|
}
|