-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Notifications #13
Comments
Did you mean live tile messages? AFAIK notifcations like incoming unread sms banners are only possible with a server application (which we are unable to run on via app). First point should be made with PeriodicTask - but we have to be careful since such tasks are depleting battery very fast (at least on my 7.1 device - wp8 device seems not be affected so). Lightweight code needed. |
I think toast notifications would be enough for a starting. Using PeriodicTask needs maximum 5MB of memory. And the app must me lauched every 2 weeks, unless it doesn't stay. |
mh, i thought there is a way to schedule a toast notification exactly. But i was wrong :/ Maybe we can get some oc core/calendar developer, which can do server side push notification. The api from microsoft is very simple. But i think this is nothing for the first Version. When i go to "Administration" in my owncloud there is a section called "Cron". So i think there is already a implementation of periodic runned tasks in owncloud. I think for now, the periodic task would be the best. |
Yes, but you can't force users have an internet access all the time. The only suitable way is to download events, and then do some sort of thing with them. |
We already have the events of the user offline availible. So with a background task it would be a problem to raise notifications even offline. The problem i see is that the ICal format does not have any limitations, when notifications can be. The other thing is, that whe dont know when the task runs the next time. So in the worst case the task run 10 minutes before the notification would raise. Then, 15 Minutes later the mobile is in battery saving mode. So the user dont get any notifications. Its very sad, that micosofts calendar do some magic things, so it is possible for them... :( |
Batterymode will terminate push notifications too. |
There may be information there about batterymode : http://www.neowin.net/forum/topic/1040493-battery-saver-does-it-stop-whatsapp-facebook-push-notifications/#entry594469687 |
We have to implement notifications for events.
It would be really cool
The text was updated successfully, but these errors were encountered: