user1090614
user1090614

Reputation: 2697

Do broadcast reciever relies on binder or intent, Android

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

Answers (1)

CommonsWare
CommonsWare

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

Related Questions