Hello friends
I’m trying to share a sentence through Twitter in my application developed specially for Android devices. Tested as described in the basic tutorial and it did not work.
I also used some other formats to test sharing a fras both worked.
local options = { subject = "Teste subject", body = "Teste de body ", } native.showPopup("mail", options)
SMS
local options = { body = "Teste de envio SMS Corona" } native.showPopup("sms", options)
I think for sharing via Tiwtter, the format should be simliar to share via SMS or e-mail (only changing attributes).
So, Twitter is…
local options = { par01 = "abc", par02 = "def", ... } native.showPopup("twitter", options)
Can anyone give me a hand?
thank you