File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
examples/webview_example/android/app/src/main/java/com/webview_example Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 112020-08-27 Version 5.0.0
22 - Requires react-native >= 0.60
33 - This release includes Branch native SDKs Android 5.0.3 and iOS 0.35.0.
4+ - Added RNBranchModule.onNewIntent for Android. This replaces calling
5+ `setIntent` and `RNBranchModule.reInitSession`.
6+ ```java
7+ @Override
8+ public void onNewIntent(Intent intent) {
9+ super.onNewIntent(intent);
10+ RNBranchModule.onNewIntent(intent);
11+ }
12+ ```
13+ - Added `cachedInitialEvent` Boolean parameter to `onOpenStart` callback.
14+ - Improved support of in-app linking via `branch.openURL()`. The `newActivity`
15+ option for Android was removed.
16+ - There is a known issue with in-app linking on Android. When opening a link
17+ within an app via `branch.openURL()`, there is no `onOpenStart` callback
18+ and no `uri` parameter in the `onOpenComplete` callback. This will be
19+ addressed in the next release.
20+ - Rebuilt `testbed_simple`, `webview_example` and `browser_example` with
21+ RN 0.62.2.
422
5232020-07-23 Version 5.0.0-rc.1
624 - Requires react-native >= 0.60
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ protected void onStart() {
1616 @ Override
1717 public void onNewIntent (Intent intent ) {
1818 super .onNewIntent (intent );
19- setIntent (intent );
19+ RNBranchModule . onNewIntent (intent );
2020 }
2121
2222 /**
You can’t perform that action at this time.
0 commit comments