Re: [Architecture] About EMM-Android Local Push Notification Mechanism

2014-04-09 Thread Chan
+1 for the 3 options Shan mentioned. This will depend on the requirement. Cheers~ On Thu, Apr 10, 2014 at 12:07 PM, Kasun Dananjaya Delgolla wrote: > Hi Shan, > > Yes it is possible. I will start working on this when I'm done with OAuth > implementation. > > Thanks > > > On Thu, Apr 10, 2014 at

Re: [Architecture] About EMM-Android Local Push Notification Mechanism

2014-04-09 Thread Kasun Dananjaya Delgolla
Hi Shan, Yes it is possible. I will start working on this when I'm done with OAuth implementation. Thanks On Thu, Apr 10, 2014 at 11:51 AM, Shanmugarajah Sinnathamby wrote: > There are cases where we have to go with the specific approaches like > local push notification only, GCM only or both

Re: [Architecture] About EMM-Android Local Push Notification Mechanism

2014-04-09 Thread Shanmugarajah Sinnathamby
There are cases where we have to go with the specific approaches like local push notification only, GCM only or both . So if we can configure the system in a way where 3 scenarios are possible . 1. Local Notification Only (Currently this is one of the customer requirement) 2. GCM only 3. Hybrid (Lo

Re: [Architecture] About EMM-Android Local Push Notification Mechanism

2014-04-09 Thread Dilshan Edirisuriya
I believe its better to use them both since in some scenarios if we have dynamic policies (time based etc. ) which is created from EMM this will be needed. Hence we need to think about a way to have them work when necessary. On Thu, Apr 10, 2014 at 10:45 AM, Kasun Dananjaya Delgolla wrote: > @Di

Re: [Architecture] About EMM-Android Local Push Notification Mechanism

2014-04-09 Thread Kasun Dananjaya Delgolla
@Dilshan - We can actually allow switching. But there might be a scenario where we might need both. That's totally depends on the scenario where it will be used. On Thu, Apr 10, 2014 at 10:41 AM, Chathura Dilan wrote: > +1 for local notifications. There are some tasks which need to happen real

Re: [Architecture] About EMM-Android Local Push Notification Mechanism

2014-04-09 Thread Chathura Dilan
+1 for local notifications. There are some tasks which need to happen real time and some tasks which does need to happen on time. If we can distinguish them properly we can save large amount of battery power. On Thu, Apr 10, 2014 at 10:34 AM, Harshan Liyanage wrote: > Hi Kasun, > > I think we m

Re: [Architecture] About EMM-Android Local Push Notification Mechanism

2014-04-09 Thread Harshan Liyanage
Hi Kasun, I think we must implement the method you are proposing. Since this AlarmManager system service will wakeup our EMM agent in every 10 mins (or in configured intervals) it will make sure that our EMM agent is running in the device. Otherwise there would be no way that we could guarantee th

Re: [Architecture] About EMM-Android Local Push Notification Mechanism

2014-04-09 Thread Dilshan Edirisuriya
Hi Kasun, "We gonna enable both GCM and Local push as switchable options so that depending on the requirement, we can choose which method to go with" Just to clarify does this use both local and push notifications at once or we allow to switch one based on the implementation? Regards, Dilshan

[Architecture] About EMM-Android Local Push Notification Mechanism

2014-04-09 Thread Kasun Dananjaya Delgolla
Hi All, This is to brief and discuss about the architecture of the $subject. So here's how it works. We gonna enable both GCM and Local push as switchable options so that depending on the requirement, we can choose which method to go with. Android's native service such as AlarmManager will be us