Anybody knows why iOS is rejecting the below code or have a solution? The popup doesn’t show. In Android it’s working fine.
native.canShowPopup( “mail” ) is indeed returning false
print( native.canShowPopup( "mail" ) ) --prints false
local options = {
to = "my_email@gmail.com",
subject = "My Mail Support",
body = "my body"
}
local returned = native.showPopup( "mail", options )
print( returned ) --prints false