1

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?

Onik
  • 19,396
  • 14
  • 68
  • 91
user1090614
  • 2,575
  • 6
  • 22
  • 27

1 Answers1

2

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.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491