You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -281,7 +281,16 @@ public class MainNotificationService extends FirebaseMessagingService {
281
281
282
282
```
283
283
284
-
See the [example app](https://github.com/intercom/intercom-react-native/blob/main/example/src/App.tsx) for an example of how to handle deep linking in your app.
284
+
Add the following in your `MainActivity`
285
+
286
+
```kotlin
287
+
overridefunonNewIntent(intent:Intent) {
288
+
super.onNewIntent(intent)
289
+
setIntent(intent)
290
+
}
291
+
```
292
+
293
+
See the [example app](https://github.com/intercom/intercom-react-native/blob/main/sandboxes/NotificationsSandbox/App.tsx) for an example of how to handle deep linking in your app.
0 commit comments