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
{{ message }}
This repository was archived by the owner on Jan 14, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,17 @@ In `android/app/src/main/res/values/colors.xml` (Create the file if it doesn't e
142
142
</resources>
143
143
```
144
144
145
+
If your app has an @Override on onNewIntent in `MainActivity.java` ensure that function includes a super call on onNewIntent (if your `MainActivity.java` does not have an @Override for onNewIntent skip this):
146
+
147
+
```java
148
+
@Override
149
+
publicvoid onNewIntent(Intent intent) {
150
+
...
151
+
super.onNewIntent(intent);
152
+
...
153
+
}
154
+
```
155
+
145
156
### If you use remote notifications
146
157
147
158
Make sure you have installed setup Firebase correctly.
0 commit comments