I have an application in which I\'m receiving a sms containing his location.On receiving sms it calls another activity to start and passes that location to that activity to
For Kotlin
Handler().postDelayed({ val i = Intent(this, MainActivity::class.java) startActivity(i) }, 5000)