add new apis and samples

This commit is contained in:
Evgeny
2022-08-03 18:31:04 +03:00
parent a307e9c04c
commit 030facc285
6 changed files with 147 additions and 14 deletions

View File

@@ -8,10 +8,10 @@ end
function on_click(idx)
if idx == 1 then
system:send_message("text", "msg-receiver.lua")
aio:send_message("text", "msg-receiver.lua")
elseif idx == 2 then
system:send_message(1)
aio:send_message(1)
else
system:send_message{ "one", "two", "three" }
aio:send_message{ "one", "two", "three" }
end
end