Fix the alarm timing so that it uses absolute time.

Was originally using relative time for the alarm so it was going off
almost immediately, fix to use absolute time.

Bug: 22163051
Change-Id: I6c37f414985d1dc961d3cb0bc53f2ceb6133cdd8
diff --git a/src/com/android/phone/vvm/omtp/sync/OmtpVvmSyncService.java b/src/com/android/phone/vvm/omtp/sync/OmtpVvmSyncService.java
index cce936b..afced58 100644
--- a/src/com/android/phone/vvm/omtp/sync/OmtpVvmSyncService.java
+++ b/src/com/android/phone/vvm/omtp/sync/OmtpVvmSyncService.java
@@ -303,7 +303,8 @@
 
         AlarmManager alarmManager = (AlarmManager)
                 this.getSystemService(Context.ALARM_SERVICE);
-        alarmManager.set(AlarmManager.ELAPSED_REALTIME, retryInterval, pendingIntent);
+        alarmManager.set(AlarmManager.RTC, System.currentTimeMillis() + retryInterval,
+                pendingIntent);
 
         VisualVoicemailSettingsUtil.setVisualVoicemailRetryInterval(this, phoneAccount,
                 retryInterval * 2);