Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.