19 lines
No EOL
485 B
Kotlin
19 lines
No EOL
485 B
Kotlin
package com.henryhiles.qweather
|
|
|
|
import android.app.Application
|
|
import com.henryhiles.qweather.di.*
|
|
import org.koin.android.ext.koin.androidContext
|
|
import org.koin.core.context.startKoin
|
|
|
|
class QWeather : Application() {
|
|
override fun onCreate() {
|
|
super.onCreate()
|
|
startKoin {
|
|
androidContext(this@QWeather)
|
|
modules(
|
|
appModule, locationModule, repositoryModule, screenModelModule, managerModule
|
|
)
|
|
}
|
|
}
|
|
|
|
} |