Where are the AccountManager Accounts stored? Is it on the device? If yes in which folder is it stored?
|
|
|
It is stored here:
Where getSystemSecureDirectory:
and |
|||
|
|
|
While the answer is perfectly correct, you should keep in mind that 'Environment.getSystemSecureDirectory()' is a platform API method and not part of the public SDK's API. If you look at its javadoc, you will realize the '@hide' annotation:
The hidden methods are meant for use only by platform apps that are distributed along with the platform itself. They are compiled against the platform source rather than the SDK source as apps for Play/Market are required to be. This means that you're not allowed to use it if you want to distribute your app on Play/Market. |
||||
|
|
