Hope you will understand my question with my basic english...
In my application, I allow the user to have a button that launch the application of his choice. I get n
Instead of saving the Intent you could just save the String which is necessary to build the Intent.
Intent
String
Example:
Intent intent = new Intent("com.android.notepad.action.EDIT_TITLE");
Now you just store a String containing com.android.notepad.action.EDIT_TITLE
com.android.notepad.action.EDIT_TITLE