Hello,
I have set a achievement in my game and when it is unlock, I don’t have the notification popup that tell me that it’s is unlock.
So I have
local gpgs = require( “plugin.gpgs.v2” )
gpgs.enableDebug()
(…)
gpgs.achievements.unlock({
achievementId=“abcdef”,
listener=function(event) print(event) end
})
I can see in the google play game services linked to my account that the achievement was unlocked, but usualy at that moment, there is a popup notifcation telling the name of the achievement unlocked and the xp that was win.
Why it is not showing in my game ?
Thank you.
Yvan.