You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Android needs reminder_Ids as int, since notification-requestcodes are int as well. Switching between int and long is dangerous, as casting does not work for variables in Intents.
E.g. putExtra("key",reminder.getId());
getExtras().getInt("key");
will return 0.
The text was updated successfully, but these errors were encountered:
Android needs reminder_Ids as int, since notification-requestcodes are int as well. Switching between int and long is dangerous, as casting does not work for variables in Intents.
E.g. putExtra("key",reminder.getId());
getExtras().getInt("key");
will return 0.
The text was updated successfully, but these errors were encountered: