javame_android wrote: > I want the application to run in background. This application should > run continuously and should never get killed.
Strictly speaking, that is not possible. > Will running application as Service solve this issue? Not really. Services can be killed by Android (e.g., low memory conditions) or by the user (e.g., Force Close button in Manage Applications). You can roll your own firmware and create daemons and such that are not subject to being killed. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Need help for your Android OSS project? http://wiki.andmob.org/hado --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

