Null Pointer Exception in my BroadcastReceiver class
- by user1760007
I want to search a db and toast a specific column on the startup of the phone. The app keeps crashing and getting an exception even though I feel as the code is correct.
@Override
public void onReceive(Context ctx, Intent intent) {
Log.d("omg", "1");
DBAdapter do = new DBAdapter(ctx);
Log.d("omg", "2");
Cursor…