This repository has been archived on 2025-03-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
QWeather/app/src/main/java/com/henryhiles/qweather/QWeather.kt

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