Hi, I`m developing an aplication corona that use Google play Game Service.
I used the following tutorial as example http://coronalabs.com/blog/2013/06/25/tutorial-introducing-google-play-game-services/.
My application login is successful, but when i try to set High Score not working.
I have the next code:
local myScore = 100
local myCategory = “com.yourname.yourgame.highscores”
if ( system.getInfo( “platformName” ) == “Android” ) then
--for GPGS, reset “myCategory” to the string provided from the leaderboard setup in Google
myCategory = “My ID”
end
gameNetwork.request( “setHighScore”,
{ localPlayerScore = { category=myCategory, value=tonumber(myScore) },
listener = postScoreSubmit
} )
I debugged the aplicaction in the device and show the next message:
“The ‘gameNetwork’ library is not available on this platform”
My subscription is basic, according to this link http://docs.coronalabs.com/daily/plugin/gameNetwork-google/
have gameNetwork.
Please help me in this problem.
Greetings!!!