Google Play Game Services loadAchievements?

I am intretsetd in using Google Play Game Services.  I was wondering if loadAchievements returns the same info we get from Game Center? From the docs:

loadAchievements: Loads a list of the user’s
completed achievements for the app and returns an array of items
(tables) representing each achievement in the callback listener.

event.data in callback listener is an array of items that have the following properties (each representing an achievement):

  • identifier (string)
  • percentComplete (number)
  • isCompleted (boolean)
  • isHidden (boolean)
  • lastReportedDate (string)
  • showsCompletionBanner (boolean, iOS 5+ only, will be nil otherwise)

Thanks!

You can read the docs here: http://docs.coronalabs.com/daily/plugin/gameNetwork-google/request.html

The items are not the same but they are similar.

event.data in callback listener is an array of items that have the following properties (each representing an achievement):

  • identifier (string)
  • title (string)
  • description (string)
  • isCompleted (boolean)
  • isHidden (boolean)
  • lastReportedDate (number)

Excellent, thanks!

p.s. sorry I did not see that doc first, much appreciated!

You can read the docs here: http://docs.coronalabs.com/daily/plugin/gameNetwork-google/request.html

The items are not the same but they are similar.

event.data in callback listener is an array of items that have the following properties (each representing an achievement):

  • identifier (string)
  • title (string)
  • description (string)
  • isCompleted (boolean)
  • isHidden (boolean)
  • lastReportedDate (number)

Excellent, thanks!

p.s. sorry I did not see that doc first, much appreciated!