我在Manifest文件中声明了这个接收器。我在一部手机上接收了三星Note 2 Jelly bean的广播,但没有收到另一部手机Redmi 4.4.4的广播。请告诉我可能存在的问题。
<receiver
android:name=".UpgradeReceiver"
android:enabled="true"
android:exported="false">
<intent-filter android:priority="999" >
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
<action android:name="android.intent.action.PACKAGE_REPLACED" />
<data android:scheme="package" />
</intent-filter>
</receiver>