We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ad3a7 commit a89af28Copy full SHA for a89af28
README.md
@@ -202,8 +202,11 @@ If the `requestPermission` or `schedule` functions previously ran you may want t
202
)
203
```
204
205
-## Future work
206
-Let us know what you need by opening a Github issue.
207
-
208
-We're thinking about adding support for things like:
209
-- Interactive Notifications on iOS
+## Help, my Android app is restarted
+When your app is launched from a notification you may notice the app is not continuing from when you
+put it in the background. To fix that, open `app/App_Resources/AndroidManifest.xml` and change the
+`launchMode` of the NativeScript activity. For instance:
+
210
+```xml
211
+<activity android:launchMode="singleTop" />
212
+```
0 commit comments