Re: [android-developers] Install to sd and alarms

2010-09-24 Thread Greg Donald
On Fri, Sep 24, 2010 at 3:28 PM, Dianne Hackborn wrote: > Apps on SD is mostly intended for > large applications that are fairly self-contained (read games and stuff like > that). An app being small doesn't stop users from screaming "Why can't I move this to my sd card, 1 star!". God I hate user

Re: [android-developers] Install to sd and alarms

2010-09-24 Thread Dianne Hackborn
See here: http://developer.android.com/guide/appendix/install-location.html Use this to find out when the app is remounted: http://developer.android.com/reference/android/content/Intent.html#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE However I would generally suggest not doing this. If your app isn

[android-developers] Install to sd and alarms

2010-09-24 Thread Peter Sinnott
I am thinking of adding install to sd support to my app but it seems sd and the alarms manager do not mix well. So far I have tried receiving ACTION_MEDIA_MOUNTED intents so I can reregister my alarms but the intent is never fired. Is there any easy hook I can use to register alarms when my app bec