What is the best way to pass information from an activity one to a fourth activity? In my case, the first activity is a user form. It has a button that verifies the data and opens a second activity, where the user has different option to choose. Each option is a new activity. Some of those activities need part of the information that was entering by the user in the first activity.
My approach is to pass the data using putExtras in the intent from first activity to second activity. In the second activity I get the Extras and place again in another intent with putExtras to pass it to the next activity and continue doing that until reach the activity that needs the info.
This approach seems that I am writting the same code over and over again. So can someone give some different options?