Hello
I have a concern with either Game Center or the lastest Corona Build which is 1142. My issue here unlocking any achievement for my game does not work, and also pressing the achievement button for the player to see their achievement does not work. Game Center loads fine, but no achievements appears. Also this causes for some parts of the game to not work, because it relies on Game Center for it to work. I went back and used build 971 and Game Center worked fine with achievements. But now with build 1142 it does not work. Here is a sample how I unlock an achievement.
if(goach.money == nil) then goach.money = 0 end local function unlock1 () if \_G.loggedIntoGC == true then if tonumber(goach.money) \>= 10 and tonumber(goach.money) \< 11 then gameNetwork.request( "unlockAchievement", { achievement = { identifier="go", percentComplete=100, showsCompletionBanner=true, }, }) end end end local function onplay (event) if event.phase == "release" then goach.money = goach.money + 1 unlock1() end end
I’m surprise that I did not find any issue relating to this, or maybe I might have missed it. Is it that my code is wrong or the build is broken?