Hey Everyone,
I was just wondering if I could use the social plugin on android to post other files other then images? So far .txt files and images work with the below code.
local popupListener = {} function popupListener:popup( event ) print( "(name, type, activity, action):", event.name, event.type, tostring(event.activity), tostring(event.action) ) end native.showPopup( "social", { listener = popupListener, image = { { filename="AllData.jpeg", baseDir=system.DocumentsDirectory } } }) end
Is there a way I could post like .db files using the social plugin? I would imagine it would have to do with replacing image with something?
Thanks!
-B