Hi All,
I am working in IPC on Android. I want to invoke the service via IPC running in one application from the client running in other application.For this I need to make the my service as System service like Gtalk Service.
I guess to make the System service the following are the options:
1. storing service.apk in to system/app
2. installing the application
3.mainifest for service must have

android.permission.ADD_SYSTEM_SERVICE
I am able to push my service application into system/app and running it.
But on restarting emulator the file is vanishing from system/app.
I think i need to install the application in to system/app instead of pushing it.
How can we do that ?
Any idea how to make system service and acess the interface outside ?