HI,
I have a lite version of a game on the Amazon store, I also have a full version.
In the light game I have a button which should link to the full version of the game.
Can anybody tell me how to link to the full version.
I can do so in googleplay no problem but unsure in amazon what to do.
Do i have to place the version id in the AMAzon developer console as the
androidAppPackageName = “AMAZON VERSION ID ?”,
[lua]
function buyme:touch (event)
if event.phase == ‘began’ then
local options = {
--androidAppPackageName = “pixelstick.asteroids.co.uk”,
supportedAndroidStores = { “amazon” },
}
native.showPopup(“appStore”, options)
--print(“oh Ive been touched!”)
end
end
[/lua]
Thank you