mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-21 20:35:58 +03:00
Merge pull request #2115 from nextcloud/fixIntent
Use FLAG_IMMUTABLE if needed
This commit is contained in:
commit
8ff268a30e
1 changed files with 3 additions and 1 deletions
|
@ -28,7 +28,9 @@ public class WidgetUtil {
|
|||
* @return {@param flags} | {@link PendingIntent#FLAG_MUTABLE}
|
||||
*/
|
||||
public static int pendingIntentFlagCompat(int flags) {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
||||
return flags | PendingIntent.FLAG_IMMUTABLE;
|
||||
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
||||
return flags | PendingIntent.FLAG_MUTABLE;
|
||||
}
|
||||
return flags;
|
||||
|
|
Loading…
Reference in a new issue