Skip to content

Commit

Permalink
[Update] deeplink flags
Browse files Browse the repository at this point in the history
  • Loading branch information
jeprubio committed Jun 7, 2024
1 parent c0e2c01 commit dd14e8d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class OpenComicsAction : ActionCallback {
private fun openDeepLink(context: Context, deepLink: String) {
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(deepLink)).apply {
setPackage(context.packageName)
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP
}
context.startActivity(intent)
}

0 comments on commit dd14e8d

Please sign in to comment.