I have this method in a .aidl file:
void getObjects(out List<MyObject> objList);
But I get this error
src / com / mycompany / mypackage / ITestService.aidl: 26 parameter objList (1) unknown type List objList
How to create a MyObject list in .aidl?
Thanks.
source
share