As a developer, it is very important to know how to get and send broadcasts in Android development, either to notify another app or us. Broadcast Receiver App is an app that allowed me to learn most of the features about the Broadcast Receiver application component of the Android framework.
๐๐๐๐๐ Common Manifest ๐๐๐๐๐
Broadcast Receiver App can:
โ
Enable permanently an receiver registered on the manifest file.
โ
Disable permanently an receiver registered on the manifest file.
๐๐๐๐๐ Common Context ๐๐๐๐๐
Broadcast Receiver App can:
โ
Register a receiver in either activity context or app context.
โ
Unregister a receiver in either activity context or app context.
๐๐๐๐๐ Custom Manifest ๐๐๐๐๐
Broadcast Receiver App can:
โ
Enable or disable permanently an receiver registered on the manifest file.
โ
Send either sorted or unsorted broadcast.
โ
Send broadcast to an app which has permission (itself app) or not and also sorted or not.
๐๐๐๐๐ Custom Context ๐๐๐๐๐
Broadcast Receiver App can:
โ
Register or unregister a receiver in either activity context or app context.
โ
Send either sorted or unsorted broadcast.
โ
Send broadcast to an app which has permission (itself app) or not and also sorted or not.
๐๐๐๐๐ App Companion ๐๐๐๐๐
Broadcast Receiver App can:
โ
Send a broadcast to a manifest registered receiver, the broadcast can be sorted or unsorted and with permission or without it.
I think broadcasting in Android is an important behavior and I like to know about it. I enjoyed building this app and learned a lot about Broadcast Receiver component in Android development ๐.