Skip to content

Instantly share code, notes, and snippets.

@alibahaaa
Created June 25, 2022 19:43
Show Gist options
  • Save alibahaaa/1c35dbbd62a31f8a5b890ed83f4dd1cd to your computer and use it in GitHub Desktop.
Save alibahaaa/1c35dbbd62a31f8a5b890ed83f4dd1cd to your computer and use it in GitHub Desktop.
import android.app.Application
import org.koin.android.ext.koin.androidContext
import org.koin.core.component.KoinComponent
class App : Application() , KoinComponent {
override fun onCreate() {
super.onCreate()
initKoin {
androidContext(this@App)
modules(appModule)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment