Java Utility for AIDL

I have an existing Java interface that I would like to open through AIDL. Is there a way to automatically create AIDL with Java?

I know Java2IDL for Corba code, so this will be something similar to this.

+3
source share
2 answers

It seems to me that it’s hard to make it so that both Java and AIDL are different languages. In addition, it may happen that you send and receive user-defined types through AIDL interfaces, and this requires additional processing in AIDL. You need to create a separate AIDL file for each collapsible type.

+1
source

, . , aidl Java, . , , .

0

Source: https://habr.com/ru/post/1781168/


All Articles