cordova-google-play-game icon indicating copy to clipboard operation
cordova-google-play-game copied to clipboard

Changed README.md to fix problems with showLeaderboard and signout

Open Samleo8 opened this issue 5 years ago • 0 comments

There are 2 misprints in the README.md:

  1. Sign Out

googleplaygame.signout(); should be googleplaygame.signOut();

  1. Show Leaderboards

var data = { leaderboardId: "board1" }; googleplaygame.showLeaderboard(leaderboardId);

should be

var data = { leaderboardId: "board1" }; googleplaygame.showLeaderboard(data);

Samleo8 avatar Oct 13 '18 13:10 Samleo8