Re: [android-developers] Setting a daily Alarm via a BootReceiver

2012-03-22 Thread asheesh arya
possibly u r ryt probably not!!! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Setting a daily Alarm via a BootReceiver

2012-03-22 Thread TreKing
On Thu, Mar 22, 2012 at 12:39 AM, Anuj Goyal anuj.go...@gmail.com wrote: Is this the correct way to set a daily (inexact) alarm via a BootReceiver? Test it. Does it work? If the answer is yes, it works, then yes, it's the correct way. If the answer is no, it does not work, then no, it is not

Re: [android-developers] Setting a daily Alarm via a BootReceiver

2012-03-22 Thread mcterry
Are you asking how to schedule an alarm to occur at roughly the same time each day? Or what? Let me know how I can help... -Matt www.sep.com/mcterry On Thursday, March 22, 2012 3:35:09 AM UTC-4, asheesh arya wrote: possibly u r ryt probably not!!! -- You received this message because you

[android-developers] Setting a daily Alarm via a BootReceiver

2012-03-21 Thread Anuj Goyal
Is this the correct way to set a daily (inexact) alarm via a BootReceiver? import java.util.Calendar; import android.app.AlarmManager; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import