In my Nativescript app, I am not directly using PendingIntent object but still I am getting the below error
java.lang.IllegalArgumentException: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.
Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies or bubbles.
Please help me to know what could be the best way to resolve this.
I can see PendingIntent in some libraries inside Node_Modules though.
2