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
if you are on S+ android api you may get this error so in notification helper you can update pending intent to check if current sdk is higher than S api
val pendingIntent: PendingIntent = PendingIntent.getActivity(
context,
0,
intent,
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
FLAG_IMMUTABLE
} else {
0
}
)
The text was updated successfully, but these errors were encountered:
if you are on S+ android api you may get this error so in notification helper you can update pending intent to check if current sdk is higher than S api
val pendingIntent: PendingIntent = PendingIntent.getActivity(
context,
0,
intent,
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
FLAG_IMMUTABLE
} else {
0
}
)
The text was updated successfully, but these errors were encountered: