I have a library from a third party vendor. This library has an enum that I can access on the aidl server side.
This enum (and the library it resides in) is inside an AIDL service.
Now, the problem is: on the client side, how do I access this enum?
I understand that if I defined my own enum and make it implements Parcelable, then my enum can be accessed on the client side. However, this enum belongs to a third party library. Is there a way to access it from the client side?