I am using bug-sense for bug reporting. After the latest update to my app, I have been getting null pointers on.
This problem happens only for Android 4.1.1. There are 25 occurrences of these null pointers in almost every activity, and from Android 4.1.1 exclusively.
Anyone know why this is happening?
Intent i= new Intent(context, MyActivity.class);
i.putExtra("id", id);
context.startActivity(i);
getting extras:
Bundle extras = getIntent().getExtras();
String id = extras.getString("id"); //null pointer