Hi all,
I'm not able to handle/parse received SMS with a 5.1.1 device.
No problems (with other devices) up to release 5.0.2.
The service dedicated to handle SMSs, which usually come up at the first sms received, does not show any sign of life.
Even if I start it "manually" it seems to ignore every SMS event.
Here follows my manifest:
Any clue ?
Thank you for the support, as usual.
Regards,
Claudio.
I'm not able to handle/parse received SMS with a 5.1.1 device.
No problems (with other devices) up to release 5.0.2.
The service dedicated to handle SMSs, which usually come up at the first sms received, does not show any sign of life.
Even if I start it "manually" it seems to ignore every SMS event.
Here follows my manifest:
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
AddPermission(android.permission.MODIFY_AUDIO_SETTINGS)
AddPermission("android.permission.CALL_PHONE")
AddPermission(android.permission.DISABLE_KEYGUARD)
AddPermission(android.permission.RECEIVE_SMS)
AddReceiverText(SMSIntercept,
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>)
Any clue ?
Thank you for the support, as usual.
Regards,
Claudio.