Thanks Maryna! I thought I deleted that line before. Sorry for all the silly mistakes.
Well the build was successful! Now all I have to do is understand how to use the plugin.
When they explain that you can use:
code<button onclick="window.plugins.socialsharing.share('Message, image and link', null, 'https://www.google.nl/images/srpr/logo4w.png', 'http://www.x-services.nl')">message, image and link</button>/code
How would I have the button click event execute this action? And when they refer to:
codewindow.plugins.socialsharing.available(function(isAvailable) {
if (isAvailable) {
// use a local image from inside the www folder:
window.plugins.socialsharing.share(null, null, 'www/image.gif', null);
// success/error callback parameters may be added as 5th and 6th parameters
/code
.. or a local image from anywhere else (if permitted)
for example in Android:
code
// local-Android:
window.plugins.socialsharing.share(null, null, 'file:///storage/emulated/0/nl.xservices.testapp/5359/Photos/16832/Thumb.jpg');
/code
How would I know the file directory for sharing a local image (i.e. from the Cameraroll) once the image is taken on the "camera" page?
What's the best way to incorporate this plugin for both of the jqplots on "results" page?
And would I include a line of code in one button for each of the phone operating systems (ie iOS, iOS-alt, Android, and image from the internet)?
What's the difference between all of these methods, and how can I incorporate this plugin into my Appery project with one button click doing the same thing for each operating system?
On a side note, when using buttons for navigation, what are the advantages/disadvantages for using the "use full screen refresh" option?
Thank you so very much!