Look for best practice for eCommerce app,
Use case is user add products to cart but didn’t checkout and then exit the application, can be by press home button or back or whatever, I am looking for suggestion how to best remind the user he has items and he need to checkout
I considered those alternatives but wonder if there is better approach
- exit confirmation - is there is a reliable hook/callback I can use before user close the application that will fire in all cases? Cordova plugin is fine
- server + push notification, when adding a product to basket save this on server and after 1 hour send push notification, don’t like this, complicate
- Local background process or timer + local notification - after 1 hour send notification, don’t like this, complicate
Any suggested approach?