Use Android for Twitter's share

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.

E-mail

    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

Sharing via twitter is not supported for Android in Corona.

Ok ubj3d, thanks! I will solve this with URL…

It is supported. If you use the social plugin.

Hi euphoriacorona…I try use social plugin for posts via Twitter, but don’t work in Android version.

Are you sure that works for android? Could you send an example?

Regards!

If you go to the Corona Social plugins sample code (there is a link on the plugin’s page) on github the example there works on Android.

You have to be a Pro subscriber to use that plugin though, maybe thats why it doesn’t work for you (as your a basic subscriber) ?

I think the social plugin works also for the android version.For more details regarding android development check out here that might help you.

Sharing via twitter is not supported for Android in Corona.

Ok ubj3d, thanks! I will solve this with URL…

It is supported. If you use the social plugin.

Hi euphoriacorona…I try use social plugin for posts via Twitter, but don’t work in Android version.

Are you sure that works for android? Could you send an example?

Regards!

If you go to the Corona Social plugins sample code (there is a link on the plugin’s page) on github the example there works on Android.

You have to be a Pro subscriber to use that plugin though, maybe thats why it doesn’t work for you (as your a basic subscriber) ?

I think the social plugin works also for the android version.For more details regarding android development check out here that might help you.