What must a PendingIntent specify since Android 12?
- A Mutability, using FLAG_IMMUTABLE or FLAG_MUTABLE
- B An explicit request code
- C A notification channel
- D A foreground service type
Answer
Mutability, using FLAG_IMMUTABLE or FLAG_MUTABLE
Immutable should be the default, since a mutable PendingIntent can be modified by the receiving app.





