Remote Service - Android
I have been working with the AIDL as a form of invoke methods from a device to another device (Android Devices), but this is not working in that way, 开发者_JAVA百科however works in a unique device, only to local level, so i want to make it but of remote form, specifically making calls of methods from device to another devices, as i said in the firsts lines. That is possible? how can i do it?
No. It is currently not possible to target a service running on a separate device with an AIDL binding. There are many many alternative RPC implementations you can use, but that one currently does not support targeting a service ona remote device.
It may be possible to overload the implementation but definitely not on a standard device.
精彩评论