-
Shiny 2.4.0.2960 As per the docs we configure Shiny in our Startup classes
This code gets run on startup. In iOS, the wire up done within Shiny for local notifcations does not causes the "AppName Would Like to Send You Notifications" dialog to be shown to the user, that is not shown until we call RequestAccess. However the wireup being done within Shiny for Push notifcations is causing that dialog to appear on startup which isn't the greatest of user experiences. We'd want to introduce the idea of notifcations before having the user see that dialog. I'm assuming this can't be helped and Shiny must do the wireup on Startup and that wireup must include requesting permission. Assuming this is the way it is, is it OK to wrap the p.s. Many thanks for opening up the Q&A section. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I would always recommend looking at the code. I may be taking down the docs as I simply can't do everything, they are not complete, and people are quoting them far too often. Push & Local Notifications don't do anything automatically. If you "uninstall the app", secure settings may be hanging around so Shiny.Push is auto re-initing itself. Try calling UnRegister, reinstall app, and see if the behaviour is still the same. If it is, you can file an enhancement request. |
Beta Was this translation helpful? Give feedback.
I would always recommend looking at the code. I may be taking down the docs as I simply can't do everything, they are not complete, and people are quoting them far too often.
Push & Local Notifications don't do anything automatically. If you "uninstall the app", secure settings may be hanging around so Shiny.Push is auto re-initing itself. Try calling UnRegister, reinstall app, and see if the behaviour is still the same. If it is, you can file an enhancement request.