Skip to content

Instantly share code, notes, and snippets.

@fevziomurtekin
Created May 19, 2019 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fevziomurtekin/912f2ff28ec090e292d54ae02d70bc44 to your computer and use it in GitHub Desktop.
Save fevziomurtekin/912f2ff28ec090e292d54ae02d70bc44 to your computer and use it in GitHub Desktop.
BaseApplication.kt
package com.fevziomurtekin.hackernewsapp
import android.app.Application
import com.fevziomurtekin.di.onlineNewsApp
import org.koin.android.ext.android.startKoin
class BaseApplication : Application(){
override fun onCreate() {
super.onCreate()
startKoin(this, onlineNewsApp)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment