[android-developers] Re: AIDL in same process

2008-11-26 Thread Dianne Hackborn
Calls through an aidl interface in the same process are simple direct function calls, no overhead added. There is currently no way to bundle multiple .apks into a single thing that the users installs; the user will need to deal with them as separate applications they need to install. On Wed, Nov

[android-developers] Re: AIDL in same process

2008-11-26 Thread Dave Sparks
IPC binder calls within the same process are treated as local C++ calls, i.e. they occur synchronously on the same thread. I'm not sure what you are asking in the second part of your question. Is this a request for dependencies in the Market, e.g. Application A requires Application B to be

[android-developers] Re: AIDL in same process

2008-11-26 Thread Louis
Yes, the request comes from Market, other company want to use our services, but for some devices, user may not install our application at all. On Nov 27, 1:49 am, Dave Sparks [EMAIL PROTECTED] wrote: IPC binder calls within the same process are treated as local C++ calls, i.e. they occur