Android Aidl Compile Error: couldn't find import for class
( I know there're multiple questions on stackoverflow and elsewhere (like google group) about adding parcelable for NetworkInfo but this is not about that. ) My work is under $(AOSP_ROOT)/device/ and involves multiple aidl files. one of it is like, package com.example; parcelable SomeRequest; And another aidl is like, package com.example; import com.example.SomeRequest; interface SomeService { SomeRequest getRequest(); } And I'll get compile errors like, device/somedevice/sdk/libs/aidl/com/example/SomeService.aidl:9: couldn't find import for class com.example.SomeRequest I'm wondering it is