Skip to content

Instantly share code, notes, and snippets.

@vinodbaste
Last active September 30, 2022 10:35
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 vinodbaste/1c43c56c4ea2d49c4eaf26d00ac34500 to your computer and use it in GitHub Desktop.
Save vinodbaste/1c43c56c4ea2d49c4eaf26d00ac34500 to your computer and use it in GitHub Desktop.
class SplashScreenActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
startActivity(Intent(this@SplashScreenActivity, MainActivity::class.java))
finish()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment