I have some data in Activity 1 and i want to pass that data to activity 5... can i just call
intent.putExtra("Data", somedata);
in the first activity and fetch that in the 5th activity.... Or should i send and fetch it through all the 5 activities in order to get the data to the last activity?