'Read incoming MMS in android
I was trying to read the incoming mms in android but there are some problems with the manifest part I think.
<receiver
android:name="com.expleo.data.receiver.MmsReceiver"
android:permission="android.permission.BROADCAST_WAP_PUSH">
<intent-filter>
<action android:name="android.provider.Telephony.WAP_PUSH_DELIVER" />
<data android:mimeType="application/vnd.wap.mms-message" />
</intent-filter>
</receiver>
I tried the answer from this question how-to-detect-incoming-mms-messages-on-android-devices-using-xamarin-forms, but nothing changed.
After some time I followed the steps from other questions but no success either. Into the android docs says that the app is required to be the default SMS app in order to receive MMSs and I followed again their steps but the outcome was the same.
There is something that I am missing or can someone explain to me the new rules for this topic?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
