In my app, I am starting an Activity for current Activity and sending Bitmap through Intent but Activity will not start and when I am not sending that Bitmap it is working fine. Here is the code:
Intent i = new Intent(A.this, B.class);
i.putExtra("USERNAME", userName);
i.putExtra("STATUS", status);
i.putExtra("IMAGE_BITMAP", bitmap);
startActivity(i);
When is execute this code activity B is not starting but when i remove i.putExtra("IMAGE_BITMAP", bitmap);
this line, it works fine. Please help. Thanks in advance.