I'm having a hard time grasping how to save settings that are shared by multiple applications. Like let's say I have a company that has 5 applications and I want my users to login to just one of them, but maintain login across all 5. I know how to process login. I know how to save a map to a file and read it back, and I know how to request "WRITE_EXTERNAL_STORAGE" so that I can save that login in the Documents directory if I wanted to. The problem with that method is that it causes a new permission for the user.
How can I save some strings to an area that all of my applications have access to? I don't need file based storage, only some strings (login token, email address, that sort of thing).
How can I save some strings to an area that all of my applications have access to? I don't need file based storage, only some strings (login token, email address, that sort of thing).