Hi all!
I tried sharing image with Social Plugin, it was working on device when built with Debug but not working when built with production keystore.
I have tested it on Android and tried to share to a Whatsapp contact. Anyone has any idea what I am doing wrong?
Below is my code:
local listener = {} function listener:popup( event ) print( "name: " .. event.name ) print( "type: " .. event.type ) print( "action: " .. tostring( event.action ) ) print( "limitReached: " .. tostring( event.limitReached ) ) end native.showPopup( "social", { message = "My text to share", listener = listener, image = { { filename="share.jpg", baseDir=system.ResourceDirectory }, }, url = { "https://www.mylinktoshare.url", } })