Broadcast between Service and Activity does not work with NOT_EXPORTED flag
I want to send and receive Broadcast between Service and Activity.
I registered programmatically created BroadcastReceiver both in Service and Activity with using flag RECEIVER_NOT_EXPORTED
for make sure Broadcast is only work in own app.
But then a Broadcast was never received in both sides.
So I changed this flag from RECEIVER_NOT_EXPORTED
to RECEIVER_EXPORTED
and now it works.