distriqt / ANE-Message

Send messages from AIR using email and SMS
https://airnativeextensions.com/extension/com.distriqt.Message
0 stars 0 forks source link

Does not work on Android 5.0+ with Hangouts #16

Closed lucien144 closed 9 years ago

lucien144 commented 9 years ago

This code

var sms:SMS = new SMS();
            sms.address = "12345";
            sms.message = "ABC12";
            Message.service.sendSMSWithUI(sms);

does not do anything on Android 5.0+ with Hangouts as a default messaging app. Message.isSupported is true, obviously.

marchbold commented 9 years ago

Does the isSMSSupported return true?

lucien144 commented 9 years ago

Yes.

lucien144 commented 9 years ago

Any news?