Milestone 1 of the build brief. Version catalog pins verified against Maven Central / Google Maven on 2026-06-10; Kotlin held at 2.3.10 to match AGP 9.2's bundled KGP (built-in Kotlin) because KSP has no Kotlin 2.4 release yet. compileSdk 37 (forced by core-ktx 1.19), targetSdk 35 per brief. allowBackup=false + full dataExtractionRules opt-out; own encrypted backup comes in milestone 5. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
10 lines
310 B
Kotlin
10 lines
310 B
Kotlin
package no.naiv.meddetsamme
|
|
|
|
import android.app.Application
|
|
|
|
/**
|
|
* Application entry point. Later milestones hang app-wide singletons off this
|
|
* (DB, notification channels, alarm re-arm) — no DI framework at this size,
|
|
* manual wiring via a small service locator.
|
|
*/
|
|
class MedDetSammeApp : Application()
|