[SOLVED] Help Game Center Does not work properly

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 &nbsp;&nbsp;&nbsp;&nbsp; goach.money = 0 &nbsp;&nbsp;&nbsp; &nbsp; end local function unlock1 () if \_G.loggedIntoGC == true then if tonumber(goach.money) \>= 10 and tonumber(goach.money) \< 11 then gameNetwork.request( "unlockAchievement", { &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;achievement = { &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;identifier="go", &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;percentComplete=100, &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;showsCompletionBanner=true, &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;}, &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;}) &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;end &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;end &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;end local function onplay (event) if event.phase == "release" then goach.money = goach.money + 1 unlock1() end end &nbsp;

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?

Never mind I got it I guess the problem was at my end, it seems that the code changed from build 971 to 1073 when it comes to Game Center the way I did it, not the way Corona did it with their examples which I guess I should follow.

Never mind I got it I guess the problem was at my end, it seems that the code changed from build 971 to 1073 when it comes to Game Center the way I did it, not the way Corona did it with their examples which I guess I should follow.