I am new in Android and facing problem in passing intent my main activity class is passing intent to the class which implements broadcast receiver and intent contains 2 dimensional array
//here curDts is my 2-dimensional array
Bundle b=new Bundle();
b.putSerializable("dates", curDts );
Intent intent = new Intent(this, AlarmReceiver.class);
intent.putExtras(b);
public void onReceive(Context arg0, Intent arg1) {
Bundle b = arg1.getExtras();
//Log.v("hahahha","curDts");
String[][] my_date = (String[][])b.getSerializable("dates");
Log.v("dates",my_date+"--");
}
here my_date is showing null