I have one aidl interface and this one is implemented by A app and B app wants to use that aidl. In A app Android.mk
LOCAL_SRC_FILES += src/com/a/simple/ISimpleInterface.aidl
LOCAL_AIDL_INCLUDES += src/com/a/simple/ISimpleInterface.aidl
In B App i have just imported aidl interface as below
import com.a.ISimpleInterface;
But while module building for B app gives Error like "the com.a cannot be resolved".