Hello,
I found this https://docs.tizen.org/application/dotnet/guides/messaging/messages/ according this I made function `private void SendSms()
{
var msg = new SmsMessage();
var address = new MessagesAddress(“xxx yyy zzz”);
msg.To.Add(address);
msg.Text = “Tizen test sms message”;
msg.SimId = SimSlotId.Sim1;
var result = MessagesManager.SendMessageAsync(msg, false);
}`
Visual studio has 0 errors, but when I try open this app on my watch - it show blank page error…