I have a BroadcastReceiver that receives the sms arriving on the phone (Samsung Galaxy S4) and displays a notification containing the information of sms. It works ok. When the "Samsung ChatON" application is upgraded to the latest version in google play store my BroadcastReceiver stops working. Sms notifications are not displayed in my application. All sms are intercepted by the application "Samsung ChatOn". It would be a matter of priority BroadcastReceiver? I already placed high values.
Excerpt of BroadcastReceiver of my AndroidManifest.xml file:
<!-- SMS -->
<receiver
android:name=".receiver.ReceiverSms">
<intent-filter android:enabled="true" android:exported="false" android:priority="999">
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>