Sticky Broadcasts have been deprecated. The documentation says:
This method was deprecated in API level 21. Sticky broadcasts should not be used.
They provide no security (anyone can access them), no protection (anyone can modify them), and many other problems.
The recommended pattern is to use a non-sticky broadcast to report that something has changed,
**with another mechanism for apps to retrieve the current value whenever desired**.
What would be an possible example of such mechanism? What approach should I take?