The documentation states:
If you have a class that you would like to send from one process to another through an IPC interface, you can do that. However, you must ensure that the code for your class is available to the other side of the IPC channel and your class must support the Parcelable interface.
If I provide the .java
file to the clients everything works. But I was wondering if there would be a way to pass the .class
file instead or any other way to hide the source code.