Skip to content
Snippets Groups Projects
Unverified Commit 696cf0dd authored by Mohamed's avatar Mohamed Committed by GitHub
Browse files

Fix App is not launching after data is cleared (DEV) (#2662)


* Fill in data and bundle

* lint

Co-authored-by: default avatarharambasicluka <64483219+harambasicluka@users.noreply.github.com>
parent 71415ef7
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,8 @@ class OnboardingActivity : AppCompatActivity(), LifecycleObserver, HasAndroidInj
val intent = Intent(context, OnboardingActivity::class.java)
Timber.i("launchIntent:$launchIntent")
launchIntent?.let {
intent.fillIn(it, Intent.FILL_IN_DATA)
intent.data = it.data // DeepLinking
intent.putExtras(it) // Shortcuts
Timber.i("filledIntent:$intent")
}
context.startActivity(intent)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment