sdphil wrote: > well I am making a media player like application -- so do i want it as > a separate process using AIDL?
That depends on how many third party UIs you are seeking to have built for your app. If the answer is "zero", then you probably do not want a separate process. > what are the pros/cons of using a separate process with AIDL vs. a > local service? Pros: If you are making a public API for third party UIs to use, this is your only practical option. Cons: Extra memory usage. Extra CPU usage when communicating between them. Extra application complexity. Making Ms. Hackborn angry. ;-) -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Training: http://commonsware.com/training.html --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

