1👍
This Might help you,
Add this in FirebaseService class
try {
//ToDo Update the code for S+
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
pendingIntent = PendingIntent.getActivity
(this, 101, intent,
PendingIntent.FLAG_IMMUTABLE| PendingIntent.FLAG_UPDATE_CURRENT);
}
else
{
pendingIntent = PendingIntent.getActivity
(this, 101, intent, PendingIntent.FLAG_ONE_SHOT| PendingIntent.FLAG_UPDATE_CURRENT);
}
} catch (Exception e) {
e.printStackTrace();
}
- [Vuejs]-Vue.js get unknown Json key for v-for
- [Vuejs]-How to handle different input values created with v-for
Source:stackexchange.com