PendingIntent resultPendingIntent = null;
Код: Выделить всё
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
resultPendingIntent = PendingIntent.getActivity(mContext,
0 /* Request code */, resultIntent,
PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_UPDATE_CURRENT);
}else {
resultPendingIntent = PendingIntent.getActivity(mContext,
0 /* Request code */, resultIntent,
PendingIntent.FLAG_IMMUTABLE);
}
Подробнее здесь: https://stackoverflow.com/questions/788 ... app-to-pla
Мобильная версия