Hi,
I have created some aidl files for IPC in my Android project.
They compile and run file however in the generated .java files I am getting warnings of un-used imports as follows:
The import android.os.Binder is never used EngineInterface.java /gen/com//phone/engine line 10 Java Problem
Now I presume that they are there for a reason and since the generated file is not supposed to be modified that adding a suppress warning is not a good idea?
So how do I get rid of the warnings? I know they can be left and it doesn't affect the running of the project but I would like a clean as possible project so if its at all possible to remove this errors I would like to know how to do it.
Thanks