eold
eold

Reputation: 6052

Is it possible to remotely call methods on another computer through AIDL (Android Interface Definition Language)?

I am curious whether the AIDL only serves for inter-process communication between several Android apps on the same device, or AIDL provides much wider functionality. Let's say I have a Java application running on some server, is it possible to remotely call methods on that server through AIDL from an Android phone?

If yes, do I need some extra libraries on the server-side Java application?

Upvotes: 0

Views: 390

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007474

is it possible to remotely call methods on that server through AIDL from an Android phone?

There is nothing built into Android to support this, sorry.

Upvotes: 0

Related Questions