When I try sharing Unicode text on the BB10 Cascades framework, using the following code, all non-ASCII characters are converted to question marks at the invocation target, such as a BBM conversation or an email:
InvokeActionItem {
title: qsTr("Share")
id: shareCard
query {
mimeType: "text/plain"
invokeActionId: "bb.action.SHARE"
}
onTriggered: {
data = getData();
}
}
function getData(){
return "¿Cómo están las cosas en el mundo hoy?";
}