Android Studio – Android 12: SDK(31) unable to launch activity using intents
This is the code - if (Build.VERSION.SDK_INT >= 31) { Intent intent=new Intent(launcher.this,MainActivity.class); startActivity(intent); finish(); } I am getting this error- Console error- Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating…