registerReceiver(
downloadReceiver, IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE),
RECEIVER_EXPORTED
)
if you choose RECEIVER_NOT_EXPORTED or not choosen any value, you can not receive broadcast other app or OS. Adding RECEIVER_EXPORTED fixed my problem.