Please can anyone tell me what is, and when would it be good to use “IPC” ?
thanks,
ray.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
IPC stands for Inter-Process Communication. You need to use IPC if you have code in one process that needs to call methods on an object in another process. This way you can use in your application services provided by other applications.
You can find more info about IPC and AIDL in the Android Dev Guide
http://developer.android.com/guide/developing/tools/aidl.html