Does corona support openfeint for android builds? [import]uid: 79884 topic_id: 16135 reply_id: 316135[/import]
any answers !!?? [import]uid: 79884 topic_id: 16135 reply_id: 60138[/import]
No, it doesn’t. [import]uid: 5712 topic_id: 16135 reply_id: 60151[/import]
Some features do not work, but the basics do work with Android.
You can show the leaderboards and achievements only. You can also unlock achievements and set highscores.
I have had no problems with the functions listed above functioning on my Motorola Droid.
Basically the functions that do not currently work with android are:
showing the highscores directly
friends list
who is playing now
challenges
[import]uid: 56820 topic_id: 16135 reply_id: 60191[/import]
thank you anderoth, is those features working for android in the same way as iOS? or do i have to do some thing else?
on which build of corona?
thanks [import]uid: 79884 topic_id: 16135 reply_id: 60236[/import]
Take a peek at the game network API here: http://developer.anscamobile.com/reference/index/game-network
The lastest public build 591 supports the functions as I described above. The functions work identically for iOS and Android.
For example here are the only functions that work as of 591 for both platforms. iOS supports additional functions that you can read about at the above link.
[code]
local gameNetwork = require “gameNetwork”
–Initialize OpenFeint
gameNetwork.init( “openfeint”, “product-key”, “secret”, “display name”, “appId” )
–Show Leaderboards
gameNetwork.show( “leaderboards” )
–Show Achiements
gameNetwork.show( “achievements” )
–Set New Highscore
gameNetwork.request( “setHighScore”, { leaderboardID=“abc123”, score=99, displayText=“99 sec” } )
–Unlock Achievement
gameNetwork.request( “unlockAchievement”, “achievementId” )
[/code] [import]uid: 56820 topic_id: 16135 reply_id: 60241[/import]
thanks its working
[import]uid: 79884 topic_id: 16135 reply_id: 60346[/import]
Somehow I have missed the announcement. Thanks for the info. [import]uid: 5712 topic_id: 16135 reply_id: 60442[/import]