Add If Build.Config tests

remove dead code
This commit is contained in:
jacques 2021-11-07 22:17:10 +01:00
parent f2a4d65802
commit 682af77f97

View file

@ -38,8 +38,8 @@ public class AlarmReceiver extends BroadcastReceiver {
Log.d(TAG, "StartUpBootReceiver BOOT_COMPLETED"); Log.d(TAG, "StartUpBootReceiver BOOT_COMPLETED");
scheduleAlarm(context); scheduleAlarm(context);
} }
Toast.makeText(context, "New stock calculated", Toast.LENGTH_LONG).show(); if (BuildConfig.DEBUG) { Toast.makeText(context, "New stock calculated", Toast.LENGTH_LONG).show(); }
createNotificationChannel(context); createNotificationChannel(context);
DBHelper dbHelper = new DBHelper(context); DBHelper dbHelper = new DBHelper(context);
dbHelper.getAllDrugs(); dbHelper.getAllDrugs();
@ -123,34 +123,19 @@ public class AlarmReceiver extends BroadcastReceiver {
Date today; Date today;
Date tomorrow; Date tomorrow;
/*if (BuildConfig.DEBUG) { calendar.set(Calendar.HOUR_OF_DAY, 11);
calendar.add(Calendar.HOUR_OF_DAY, 12); today = calendar.getTime();
today = calendar.getTime(); calendar.add(Calendar.DAY_OF_YEAR, 1);
calendar.add(Calendar.DAY_OF_YEAR, 1); tomorrow = calendar.getTime();
tomorrow = calendar.getTime();
} else {*/
calendar.set(Calendar.HOUR_OF_DAY, 11);
today = calendar.getTime();
calendar.add(Calendar.DAY_OF_YEAR, 1);
tomorrow = calendar.getTime();
// }
LocalTime todayNow = LocalTime.now(); LocalTime todayNow = LocalTime.now();
if (todayNow.isBefore(LocalTime.NOON)) { if (todayNow.isBefore(LocalTime.NOON)) {
// schedule date = today
//calendar.setTimeInMillis(dateAtNoon(today).getTime());
calendar.setTimeInMillis(today.getTime()); calendar.setTimeInMillis(today.getTime());
} else { } else {
// schedule date = tomorrow
calendar.setTimeInMillis(tomorrow.getTime()); calendar.setTimeInMillis(tomorrow.getTime());
} }
/* if (BuildConfig.DEBUG)
{
calendar.setTimeInMillis(today.getTime());
}*/
PendingIntent alarmIntent; PendingIntent alarmIntent;
Intent intent = new Intent(context, AlarmReceiver.class); Intent intent = new Intent(context, AlarmReceiver.class);
@ -158,18 +143,11 @@ public class AlarmReceiver extends BroadcastReceiver {
AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE); AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
boolean alarmUp = (PendingIntent.getBroadcast(context, 0, intent,
PendingIntent.FLAG_NO_CREATE) != null);
if (alarmUp) {
Log.d(TAG, "Alarm already active");
}
alarmManager.setInexactRepeating(AlarmManager.RTC_WAKEUP,(calendar.getTimeInMillis()), alarmManager.setInexactRepeating(AlarmManager.RTC_WAKEUP,(calendar.getTimeInMillis()),
AlarmManager.INTERVAL_DAY, alarmIntent); AlarmManager.INTERVAL_DAY, alarmIntent);
Log.d(TAG, "Alarm scheduled for " + UtilDate.convertDate(calendar.getTimeInMillis())); Log.d(TAG, "Alarm scheduled for " + UtilDate.convertDate(calendar.getTimeInMillis()));
Toast.makeText(context, "Alarm scheduled for " + UtilDate.convertDate(calendar.getTimeInMillis()), Toast.LENGTH_SHORT).show(); if (BuildConfig.DEBUG) { Toast.makeText(context, "Alarm scheduled for " + UtilDate.convertDate(calendar.getTimeInMillis()), Toast.LENGTH_SHORT).show(); }
} }
} }