Skip to content

Instantly share code, notes, and snippets.

@mumayank
Created December 20, 2019 08:47
Show Gist options
  • Save mumayank/ef17d71c31c29733ee53b88adb009a37 to your computer and use it in GitHub Desktop.
Save mumayank/ef17d71c31c29733ee53b88adb009a37 to your computer and use it in GitHub Desktop.
fun openOlaApp(context: Context?) {
if (context == null) {
return
}
val launchIntent =
context.packageManager.getLaunchIntentForPackage(Constants.OLA_APP_PACKAGE_NAME)
launchIntent?.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK)
launchIntent?.let { context.startActivity(it) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment