Skip to content

Instantly share code, notes, and snippets.

@Kpeved
Created May 18, 2020 15:31
Show Gist options
  • Save Kpeved/32f37116da61cf00ef30eb04be5bd21b to your computer and use it in GitHub Desktop.
Save Kpeved/32f37116da61cf00ef30eb04be5bd21b to your computer and use it in GitHub Desktop.
class HomeViewModel(
private val analyticsInteractor: HomeAnalyticsInteractor
) : ViewModel() {
fun onFragmentCreated(){
analyticsInteractor.startTracking()
}
fun sendData() {
analyticsInteractor.sendEvent()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment