I trying for the first time to use corona-cloud-core.lua and gamenetwork(“corona”, prefs), unsuccessfully.
What I’m doing:
coronaCloud = require ( "corona-cloud-core" ) coronaCloud.init( CC\_Access\_Key, CC\_Secret\_Key ) coronaCloud.debugEnabled = true gameNetwork = require( "gameNetwork" ) local params = { accessKey = CC\_Access\_Key, secretKey = CC\_Secret\_Key, supportedOrientations="portrait"} gameNetwork.init( "corona", params ) gameNetwork.show( "dashboard" )
But I get the following WARNING, and I get a void screen:
2013-04-08 09:17:45.425 Corona Simulator[7749:f03] WARNING: The 'gameNetwork' provider (corona) is not available on the simulator 2013-04-08 09:17:45.425 Corona Simulator[7749:f03] WARNING: The 'gameNetwork' library is not available on this platform.
My Corona Simulator Build: 2013.1076, and the simulator device is iPhone.
Any help will be highly appreciated.
Thank you