On Mon, May 28, 2012 at 10:55 AM, Oleksandr Kruk <[email protected]>wrote:
> How can this IntentService update each App information using their > business logic when > the Apps are offline? > What do you mean "when the apps are offline"? If I understand you correctly, you would simply have to launch an intent or trigger a broadcast from your IntentService that has the information the other apps care about. The other apps would have to know the details of the intent or broadcast structure in order to properly listen for it. The intent would contain the data the app in question was requesting, in some known format. You would not have to know anything about their business logic, that would be up to them. ------------------------------------------------------------------------------------------------- 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

