question

M. Polito avatar image
M. Polito asked

MonoDroid and GameCircle

Hi guys, I need to integrate GameCircle in my app developed using Xamarin MonoDroid. I've some problems on create javabinding. I've also created this posts: http://stackoverflow.com/questions/20032664/gamecircle-monodroid-xamarin http://forums.xamarin.com/discussion/10307/gamecircle-amazon Here source code that fix some problems but not all: https://github.com/mapo80/GameCircle.MonoDroid Any help? Thanks.
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Sujoy@Amazon avatar image
Sujoy@Amazon answered
Hi Polito, There is no official documentation available for implementing Game Circle for the apps written on top of Xamarin.Android. Hence we are unable to provide code level support on this. Thank you for writing to us.
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

M. Polito avatar image
M. Polito answered
So I have to implement it alone! Thanks for your answer. Bye.
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

M. Polito avatar image
M. Polito answered
Hi everyone, if someone needs to use GameCircle on MonoDroid can use these library: https://github.com/mapo80/GameCircle.Monodroid Happy coding. ;) Bye
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Sujoy@Amazon avatar image
Sujoy@Amazon answered
Thanks Polito. Surely, this would help lots of developers.
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

M. Polito avatar image
M. Polito answered
I hope so! I have to write a wiki, it's not so simple to configure. Now, I've seen that leaderboards don't support time/duration. It's so frustrating, another problem! Bye bye.
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

M. Polito avatar image
M. Polito answered
Hi everyone, I'm trying to port Amazon for iOS sdk to work on mononotouch. I've created binding for AmazonInsights and here are projects that works ok: https://github.com/mapo80/AmazonInsights.Monotouch I have problem on GameCircle SDK. Here projects hosted on github: https://github.com/mapo80/GameCircle.Monotouch These are problems I found: error MT5212: Native linking failed, duplicate symbol: '_MD5' Here is a forum discussion on Xamarin forums: http://forums.xamarin.com/discussion/11892/amazon-gamecircle-for-ios-monotouch-binding-linking#latest Hope this helps. Bye, Matteo.
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

M. Polito avatar image
M. Polito answered
To solve this error: error MT5212: Native linking failed, duplicate symbol: '_MD5'. error MT5213: Duplicate symbol Do: - lipo thin for all platform ex. lipo -thin i386 -output GameCircle-x86.a -GameCircle.a - ar -r GameCircle-x86.a *.o - remove md5_one.o - libtool -static -o GameCircle-x86.a *.o - Create new universal library lipo -create GameCircle-x86.a GameCircle-armv7.a GameCircle-armv7s.a -o GameCircle-MD5.a Hope this help! Here Monotouch Library: https://github.com/mapo80/GameCircle.Monotouch Bye. Message was edited by: M. Polito
10 |5000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.