Reputation: 2697
When I set up a broadcast reciever
in Android. Does this, on the lowest levels rely on Binder
? or can you get around Binder
in any way?
Upvotes: 1
Views: 562
Reputation: 1007321
Does this, on the lowest levels rely on Binder?
I do not know what you consider "the lowest levels" to be. Certainly, sending a broadcast using sendBroadcast()
and kin will use Binder
, to pass the request to a core OS process for execution.
Upvotes: 2