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 functi开发者_运维技巧onality. 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?
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.
精彩评论