Created
October 3, 2018 10:25
-
-
Save pedromassango/39d7f0b6d84353a4ff6ff8ce626773a3 to your computer and use it in GitHub Desktop.
This is where we should initialize our Koin framework, by passing the modules that we want to use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MyApp: Application() { | |
| override fun onCreate() { | |
| super.onCreate() | |
| // call this to setup Koin with your modules | |
| startKoin(this, listOf(DependeciesModule.appModule) ) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment