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()
|