On Thu, Jan 13, 2011 at 5:59 PM, Tobiah <[email protected]> wrote: > If the app exits while I'm in the middle of performing the service, can I > get some notice and a little time to clean up? >
If your app exits, your service probably shouldn't care, unless you're binding to it and are relying on the connection. In which case you are already communicating with it directly and can tell it to clean up. If the service is running in the background, then all bets are off and you may be killed at any point. Code defensively. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

