mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-22 04:29:22 +01:00
Make change for a test release for Erwan
Change the drugs database.
This commit is contained in:
parent
8c8b732fbe
commit
6964516e56
2 changed files with 11 additions and 7 deletions
Binary file not shown.
|
@ -39,7 +39,7 @@ public class AlarmReceiver extends BroadcastReceiver {
|
||||||
scheduleAlarm(context);
|
scheduleAlarm(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
Toast.makeText(context, "New stock calculted", Toast.LENGTH_LONG).show();
|
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();
|
||||||
|
@ -114,19 +114,19 @@ public class AlarmReceiver extends BroadcastReceiver {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public static void scheduleAlarm(Context context) {
|
public static void scheduleAlarm(Context context) {
|
||||||
android.icu.util.Calendar calendar = android.icu.util.Calendar.getInstance();
|
Calendar calendar = Calendar.getInstance();
|
||||||
Date today;
|
Date today;
|
||||||
Date tomorrow;
|
Date tomorrow;
|
||||||
|
|
||||||
if (BuildConfig.DEBUG) {
|
if (BuildConfig.DEBUG) {
|
||||||
calendar.add(Calendar.MINUTE, 15);
|
calendar.add(Calendar.HOUR_OF_DAY, 12);
|
||||||
today = calendar.getTime();
|
today = calendar.getTime();
|
||||||
calendar.add(Calendar.MINUTE, 15);
|
calendar.add(Calendar.DAY_OF_YEAR, 1);
|
||||||
tomorrow = calendar.getTime();
|
tomorrow = calendar.getTime();
|
||||||
} else {
|
} else {
|
||||||
calendar.set(android.icu.util.Calendar.HOUR_OF_DAY, 12);
|
calendar.set(Calendar.HOUR_OF_DAY, 12);
|
||||||
today = calendar.getTime();
|
today = calendar.getTime();
|
||||||
calendar.add(android.icu.util.Calendar.DAY_OF_YEAR, 1);
|
calendar.add(Calendar.DAY_OF_YEAR, 1);
|
||||||
tomorrow = calendar.getTime();
|
tomorrow = calendar.getTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,6 +141,11 @@ public class AlarmReceiver extends BroadcastReceiver {
|
||||||
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);
|
||||||
|
@ -152,7 +157,6 @@ public class AlarmReceiver extends BroadcastReceiver {
|
||||||
PendingIntent.FLAG_NO_CREATE) != null);
|
PendingIntent.FLAG_NO_CREATE) != null);
|
||||||
if (alarmUp) {
|
if (alarmUp) {
|
||||||
Log.d(TAG, "Alarm already active");
|
Log.d(TAG, "Alarm already active");
|
||||||
Log.d(TAG, "Next schedule Alarm " + alarmManager.getNextAlarmClock());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(BuildConfig.DEBUG) {
|
if(BuildConfig.DEBUG) {
|
||||||
|
|
Loading…
Reference in a new issue