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

Accessing AIDL file #7

Closed Volatile-Memory closed 4 years ago

Volatile-Memory commented 4 years ago

Is it possible to access the AIDL file that remoter generates from my kotlin interface?

I would like to have access to it so that I can feed it into the Xamarin Android AIDL compiler so that I can have the service be implemented in C#.

josesamuel commented 4 years ago

Remoter doesnt generate AIDL files, it is a replacement for it

Volatile-Memory commented 4 years ago

Oh, I thought one of the intermediate steps involved in this annotation processor was to create an AIDL file and feed it through the compiler but it appears it's much more straightforward than that. Thank you for the quick reply.

Do you have any suggestions for how I might be able to do this? I know it probably falls out of the scope of this library but I also noticed that you have a lot of experience with async AIDL which might apply to my unique requirements.