美文网首页
报错:FLAG_IMMUTABLE or FLAG_MUTABL

报错:FLAG_IMMUTABLE or FLAG_MUTABL

作者: 读书人heart | 来源:发表于2023-02-06 14:08 被阅读0次

Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.

  PendingIntent sender = PendingIntent.getBroadcast(context, id.intValue(),
                intent,android.os.Build.VERSION.SDK_INT >= 31?PendingIntent.FLAG_IMMUTABLE:PendingIntent.FLAG_UPDATE_CURRENT);//

android.os.Build.VERSION.SDK_INT >= 31?PendingIntent.FLAG_IMMUTABLE:PendingIntent.FLAG_UPDATE_CURRENT

相关文章

网友评论

      本文标题:报错:FLAG_IMMUTABLE or FLAG_MUTABL

      本文链接:https://www.haomeiwen.com/subject/wijtkdtx.html