muslimtv / flutter_playout

AV Playout in Flutter
BSD 3-Clause "New" or "Revised" License
152 stars 94 forks source link

Cannot play audio #94

Open glennmichaelmejias opened 1 year ago

glennmichaelmejias commented 1 year ago

java.lang.IllegalArgumentException: com.ithaaty.ithaatyapp: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent

trung0123 commented 1 year ago

I also get the same error, please add the following code to run on android 12 and above PendingIntent pendingIntent; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { pendingIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_IMMUTABLE); } else { pendingIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); }