0

I have a question related to Android's Binder component. When I use an Android App on the emulator is it possible to do a remote procedure call of a service that is offered by a running local server (written in java). Is the inter process communication with the Binder also working with a non-android app?

Or do you know other possibilities to do RPC's with Android?

Onik
  • 19,396
  • 14
  • 68
  • 91
Tobi Weißhaar
  • 1,617
  • 6
  • 26
  • 35

1 Answers1

1

There are several IPC mechanisms in android: here you can find information about them. Moreover, here I described what IPC mechanisms of Unix you can use in Android native applications.

Community
  • 1
  • 1
Yury
  • 20,618
  • 7
  • 58
  • 86