Skip to content

Commit

Permalink
feat(android): add deeplinks handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorenzo Marchiori authored and kioli committed Jul 19, 2021
1 parent 2606f64 commit ef0f296
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/android/activity/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ protected void onResume() {
currentFragment.onResume();
}

@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
currentFragment.onNewIntent(intent);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
Expand Down

0 comments on commit ef0f296

Please sign in to comment.