josesamuel / remoter

Remoter - An alternative to Android AIDL for Android Remote IPC services using plain java interfaces
Apache License 2.0
84 stars 14 forks source link

Does not work w/ Parcelize #8

Closed herriojr closed 3 years ago

herriojr commented 3 years ago

Parcelize itself does not generate an accessible CREATOR or writeToParcel in kotlin. For the CREATOR, technically you can create a java helper method to access the CREATOR accessible from the java side, however, I need to look further into the writeToParcel side.

josesamuel commented 3 years ago

Please post an example. I have it working fine with @Parcelize kotlin. Just make sure your service interface is also defined in kotlin