Reputation: 2195
Is it possible to have multiple BroadcastReceivers that run on BOOT_COMPLETED in a single app?
Upvotes: 0
Views: 232
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