Skip to content

Instantly share code, notes, and snippets.

@neilbantoc
Created June 12, 2018 20:53
Show Gist options
  • Save neilbantoc/cc4e2a580c1cb1b258fbb303e480f605 to your computer and use it in GitHub Desktop.
Save neilbantoc/cc4e2a580c1cb1b258fbb303e480f605 to your computer and use it in GitHub Desktop.
A static function in Kotlin for generating an activity intent
companion object {
@JvmStatic fun createIntent(context: Context) : Intent {
return Intent(context, Activity::class.java);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment