In the AIDL guide (http://developer.android.com/guide/components/aidl.html) it mentions that all primitives are "in" parameters. However, I'd like to create a parameter that is a primitive and it is an "out" variable i.e. the server will set it for me.
Besides creating my own Parcelable primitives and doing all the work myself, is there a work-around for this issue? I've tried the class-version of the primitives (Integer, Boolean, etc.) and those don't seem to work :(
thanks, J