mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-21 20:35:58 +03:00
Use mutable flag above Android 12
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
da11f8997e
commit
0d5038182d
1 changed files with 1 additions and 3 deletions
|
@ -28,9 +28,7 @@ public class WidgetUtil {
|
|||
* @return {@param flags} | {@link PendingIntent#FLAG_MUTABLE}
|
||||
*/
|
||||
public static int pendingIntentFlagCompat(int flags) {
|
||||
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) {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
||||
return flags | PendingIntent.FLAG_MUTABLE;
|
||||
}
|
||||
return flags;
|
||||
|
|
Loading…
Reference in a new issue