Guest User

Untitled

a guest
Jan 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class MvvmTestingApplication : DaggerApplication() {
  2.  
  3. override fun onCreate() {
  4. super.onCreate()
  5. Injector.init(this)
  6. }
  7.  
  8. override fun applicationInjector(): AndroidInjector<out DaggerApplication> {
  9. return DaggerAppComponent.builder().application(this).build()
  10. }
  11. }
Add Comment
Please, Sign In to add comment