Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Where are the AccountManager Accounts stored? Is it on the device? If yes in which folder is it stored?

share|improve this question

2 Answers

up vote 3 down vote accepted

It is stored here:

Environment.getSystemSecureDirectory().getPath() + File.separator + DATABASE_NAME;

Where getSystemSecureDirectory:

Gets the system directory available for secure storage. If Encrypted File system is enabled, it returns an encrypted directory (/data/secure/system). Otherwise, it returns the unencrypted /data/system directory.

and DATABASE_NAME = "accounts.db";

share|improve this answer
Thanks for your prompt response! – Guna Jan 9 '12 at 8:52

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:

 /**
 * Gets the system directory available for secure storage.
 * If Encrypted File system is enabled, it returns an encrypted directory (/data/secure/system).
 * Otherwise, it returns the unencrypted /data/system directory.
 * @return File object representing the secure storage system directory.
 * @hide
 */

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.