Skip to content

Instantly share code, notes, and snippets.

@ismailgungor
Created April 11, 2019 14:24
Show Gist options
  • Save ismailgungor/cd147fe6af38945497799038be264f62 to your computer and use it in GitHub Desktop.
Save ismailgungor/cd147fe6af38945497799038be264f62 to your computer and use it in GitHub Desktop.
/**
* Responsible to manage intent process
*
* @author ismailgungor
* @since 1.0
*/
class IntentHelper(private val context: Context) {
/**
* This method provides an intent which opens Main Activity
*
* @author ismailgungor
* @since 1.0
*/
fun intentToMainActivity() {
context.startActivity(Intent(context, MainActivity::class.java))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment