Re: [android-developers] why is the account managed by AccountManager is delete automatically ?

2012-07-14 Thread Mathias Roth
Some of my users are experiencing the same issue. My suspicion is that the default install location changed from internal to external on 4.1.1. At least one user reported things are working with android:installLocation=internalOnly set in the manifest. This should be default behavior

Re: [android-developers] why is the account managed by AccountManager is delete automatically ?

2012-07-14 Thread Dianne Hackborn
The Galaxy Nexus never installs things on external storage, because that is the same partition as internal storage. You will note there is no UI for moving apps between internal and external storage on such devices. This is probably a bad interaction with the new app encryption at boot. On Fri,

Re: [android-developers] why is the account managed by AccountManager is delete automatically ?

2012-07-12 Thread marten
Am Mittwoch, 23. März 2011 07:50:56 UTC+1 schrieb Dianne Hackborn: Because when the SD card is unmounted the apps on it disappear, so things that have state associated with those apps will clean it up. This is why the documentation says you should not allow these kinds of apps to be

Re: [android-developers] why is the account managed by AccountManager is delete automatically ?

2011-03-23 Thread Dianne Hackborn
Because when the SD card is unmounted the apps on it disappear, so things that have state associated with those apps will clean it up. This is why the documentation says you should not allow these kinds of apps to be placed on the SD card. On Mon, Mar 21, 2011 at 8:22 PM, 琅琅

[android-developers] why is the account managed by AccountManager is delete automatically ?

2011-03-22 Thread 琅琅
My little App creates an account in AccountManager. But if i move the App from internal storage to SD card, the account is automatically delete by AccountManagerService if i unmounted the SD card or reboot the machine. does anyone have any idea about this ? does this mean we cannot move the App