Skip to content

Instantly share code, notes, and snippets.

@ashwin-sp
Created April 8, 2018 18:32
Show Gist options
  • Save ashwin-sp/f9c3627f8eaf8970b49d6bfad4c222dd to your computer and use it in GitHub Desktop.
Save ashwin-sp/f9c3627f8eaf8970b49d6bfad4c222dd to your computer and use it in GitHub Desktop.
class ViewModelFactory(private val mApplication: Application) : ViewModelProvider.NewInstanceFactory() {
override fun <T : ViewModel> create(modelClass: Class<T>): T {
return UserViewModel(mApplication) as T
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment