Amritendu Biswas wrote: > Hi, > > I am trying to communicate between two Android applications. > > Application-A will send message/data to Application-B. After receiving > message from Application-A, Application-B will send a reply message to > Application-A. > > Is it possible in Android application? If yes please point me the APIs > that can be used to achieve this.
You can use broadcast Intents for this (e.g., sendBroadcast()) or remote services and AIDL. Here are two projects employing the latter technique: http://github.com/commonsguy/cw-advandroid/tree/master/AdvServices/RemoteClient/ http://github.com/commonsguy/cw-advandroid/tree/master/AdvServices/RemoteService/ -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Online Training: 10-14 May 2010: http://onlc.com -- 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

