Skip to content

Commit

Permalink
docs(android): document onNewIntent() override required by branch.io
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejpeters committed Nov 12, 2019
1 parent 2b52af0 commit 9aac6b3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -80,6 +80,12 @@ Register the plugin in your Activity:
+ add(BranchDeepLinks.class);
}});
}

+ @Override
+ protected void onNewIntent(Intent intent) {
+ this.setIntent(intent);
+ super.onNewIntent(intent);
+ }
}
```

Expand Down

0 comments on commit 9aac6b3

Please sign in to comment.