Hello!
I didn’t where to post this, so I posted in the newbie section. I’m using the native.showPopup(“social”, options) for my latest game on Amazon and when I touch the button on my Kindle that calls onFacebookTouch, a popup comes up and says ‘Share via: No applications can perform this action.’
I do have android.permission.INTERNET in my build.settings file and below is the code I’m using (its from the sample code). I also do have the Facebook app installed on my kindle.
Has anyone else ran into this problem?
local function onFacebookTouch(event) if(event.phase == "began") then local options = { service = "facebook", message = "I need help! Do you know what "..user.currentAnswerLength.." letter word brings together "..user.currentWords.."? #JustFourWords", listener = eventListener, url = "http://thatssopanda.com" } native.showPopup( "social", options ) end end