I am trying to warp a Github project (fairly recently posted) but getting this error with SLC:
Browsing the web for the error indicates it requires Android 31? Is this correct?
This might be a possible solution but have not tried it yet....
www.bswen.com
B4X:
error: cannot find symbol
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_MUTABLE);
^
symbol: variable FLAG_MUTABLE
location: class PendingIntent
Browsing the web for the error indicates it requires Android 31? Is this correct?
This might be a possible solution but have not tried it yet....
how to solve `Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent` problem when running android app on android 12 ?
This post shows how to solve the `FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent` on android, the key point is to add a `PendingIntent.FLAG_IMMUTABLE` flag to your PendingIntent