I currently have a “more” button one the main menu screen of my android app and I wanted it to go to a list of other apps I had made. Is there any way to do this or can I only link to one app?
Here’s my code that just links to a single app for now:
[lua]
local options =
{
iOSAppId = “”,
nookAppEAN = “”,
androidAppPackageName = “com.kumulabs.animalpuzzle”,
supportedAndroidStores = { “google”, “samsung”, “amazon”, “nook” },
}
– MORE BUTTON FUNCTION
local function moreBut(event)
if event.phase == “ended” then
native.showPopup(“appStore”, options)
end
end
[/lua]