I have such a requirement. In Android native service process, we will do something and post data to java layer in a constant speed, i.e 30 per second. In App layer, we have to receive these data and do the according operations. The native service and App are in two different processes, and we should do as quickly as possible.
I know binder may solve my problem, but implementation is heavy. Is there any quick and simple IPC mechanism that can meet my requirement? Better have sample code. Thanks.