I have a login session ID which multiple activities need to use. How do I share this common data between multiple activities? Presently, I’m passing the data in the Intent but it is not working properly. For some activities, I pass some other data, and the common data is lost.
Share
One way to do it is to extend
Application, and then callgetApplicationin your activities. This site has some examples.