Mohsen
Mohsen

Reputation: 65785

How do I install and use share plugin in PhoneGap 3

I couldn't find proper documentation or an answer in StackOverflow but couldn't find anything.

How do I enable a very simple share button that should send a link to platform share APIs?

Upvotes: 2

Views: 109

Answers (1)

MBillau
MBillau

Reputation: 5376

If you want to call native device functionality, you'll have to use a plugin.

You can either look around online to see if somebody else has already created a plugin with the feature you want, or you could create your own by programming the native and javascript side. If you want to look around for the plugin, try the plugin registry. Adobe also maintains a registry, I have no idea if you can use those plugins without using Phonegap though. Finally, you can search around on github and the internet. There used to be a phonegap plugin repository - it has since been depreciated but hopefully the authors will have migrated their code to other github repos.

Upvotes: 2

Related Questions