I want to call (GPSSetting)services up to Total Time By every Interval Time.
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
Intent intent1 = new Intent(C2DMReceiver.this, GPSSetting.class);
PendingIntent pendingIntent = PendingIntent.getService(
C2DMReceiver.this, 0, intent1, 0);
am.setRepeating(AlarmManager.RTC, 1, 5,
pendingIntent);
just here total time 1 and interval is 5 min then GPSService should call 12 times
Total time 1 hr and Interval time 5 in millsec
I want to be call GPSSetting (Service class) up to 1 hr ...every Interval
after 1 hr service should automaticaly stop; Regards, Girish
