Robert Bana
Robert Bana

Reputation: 2195

Multiple BroadcastReceivers that handle the BOOT_COMPLETED action?

Is it possible to have multiple BroadcastReceivers that run on BOOT_COMPLETED in a single app?

Upvotes: 0

Views: 232

Answers (1)

rm-vanda
rm-vanda

Reputation: 3168

Yes, but there would be no reason for this, as you could simply have them all in one BroadcastReceiver.

Since each one will run, ON_BOOT_COMPLETED, it'll produce the same result, without being a system-hog.

Upvotes: 1

Related Questions