I'm adding an aidl file to my project, to cope with a "ClassNotFound" exception I'm getting when I call intent.getIntExtra (..), (because of another parcelable object in the same intent extras)
I added the following .aidl file (SomeInfo.aidl)
package com.someapp;
parcelable SomeInfo;
I added to Android.mk:
LOCAL_AIDL_INCLUDES := src/com/someapp/SomeInfo.aidl
But when I'm building the project, I see no difference. Actually, if I add to my code
import com.someapp.SomInfo;
The compiler can't find it...
Please help