I am working on a game that has multiple leaderboards. In the leaderboard configuration in iTunes Connect, one of them has to be designated as the “Default”. Thus, when we use the gameNetwork.show() command without any category specified, the Default leaderboard will show up.
However, I want to show all my leaderboards at once and that would mean showing the root level of the app’s Game Center menu (otherwise you’d need to press the “<” key from the default leaderboard).
I saw that some people using Objective C got around this by specifying the category to be “nil”.
So I tried it in Corona but it makes no difference and still goes to the default leaderboard:
gameNetwork.show("leaderboards", {leaderboard = {category = nil}})
Has anyone solved this?