79275693

Date: 2024-12-12 15:36:50
Score: 0.5
Natty:
Report link

The issue persist in Android 13 more, actually it create multiple instance of the activity, so the easiest solution for the same is managing the savedInstanceState in OnCreate method of the activity.

if(savedInstanceState != null){
        return;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Khush Parmar