mirror of
https://github.com/Michatec/Radio.git
synced 2026-03-31 23:46:28 +02:00
24 lines
517 B
Kotlin
24 lines
517 B
Kotlin
package com.michatec.radio
|
|
|
|
import android.app.Application
|
|
import com.michatec.radio.helpers.AppThemeHelper
|
|
import com.michatec.radio.helpers.PreferencesHelper
|
|
import com.michatec.radio.helpers.PreferencesHelper.initPreferences
|
|
|
|
|
|
/**
|
|
* Radio.class
|
|
*/
|
|
class Radio : Application() {
|
|
|
|
|
|
/* Implements onCreate */
|
|
override fun onCreate() {
|
|
super.onCreate()
|
|
initPreferences()
|
|
// set Dark / Light theme state
|
|
AppThemeHelper.setTheme(PreferencesHelper.loadThemeSelection())
|
|
}
|
|
|
|
}
|