- AGP: 7.2.2 -> 8.5.2
- Target /Компилировать версию SDK: 34 -> 35
- Gradle: 7.3.3 -> 8.7
Код: Выделить всё
: Error: Missing PendingIntent mutability flag [UnspecifiedImmutableFlag]
pendingIntent = PendingIntent.getBroadcast(context, 0, intent, 0);
Код: Выделить всё
if(Build.VERSION.SDK_INT >= VERSION_CODES.M){
pendingIntent = PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_IMMUTABLE);
} else {
pendingIntent = PendingIntent.getBroadcast(context, 0, intent, 0);
}
Я что-то упускаю или это очевидное ложное срабатывание?
На данный момент я скрыл эту ошибку с помощью аннотаций, но чувствую, что это неправильный путь.
Подробнее здесь: https://stackoverflow.com/questions/792 ... in-api-yet
Мобильная версия