Re: [mono-android] GameCircle Amazon

2013-12-01 Thread Matteo Polito
Hi Jonathan, Now after becoming mad it compiles and works. I'll write a wiki to help others make it work. Thanks for your help! Bye. 2013/11/28 Matteo Polito > Ok, solved. I missed reference Jar. > > Thanks. > > > 2013/11/28 Matteo Polito > >> Hi, I have a question: >> >> If jar binding don

Re: [mono-android] GameCircle Amazon

2013-11-28 Thread Matteo Polito
Ok, solved. I missed reference Jar. Thanks. 2013/11/28 Matteo Polito > Hi, I have a question: > > If jar binding don't have a public class what have I to do? > I know that there this class "AmazonGamesClient" in jar in > "com.amazon.ags.api" but in the generated binding there isn't. What to do

Re: [mono-android] GameCircle Amazon

2013-11-28 Thread Matteo Polito
Hi, I have a question: If jar binding don't have a public class what have I to do? I know that there this class "AmazonGamesClient" in jar in "com.amazon.ags.api" but in the generated binding there isn't. What to do? Thanks. 2013/11/27 Matteo Polito > Hi, > > I've seen that classes that imple

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Matteo Polito
Hi, I've seen that classes that implemts NumberList has GetDeppCopyHandler, so it should work. Is it right? I've binded other amazon jar: - AmazonInsights-android-sdk-2.0.24.jar - login-with-amazon-sdk.jar - gamecirclesdk.jar All projects are on GitHub: https://github.com/mapo80/GameCircle.Mono

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Jonathan Pryor
On Nov 27, 2013, at 3:25 PM, Matteo Polito wrote: > O, this should be right!! Nope! It'll result in infinite recursion and stack overflow. You want: public abstract Java.Lang.Object DeepCopy(); You'll also need to double-check that the generated NumberList type has a GetDeepCopyHandle

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Matteo Polito
O, this should be right!! using System; namespace Com.Amazon.Ags.Client.Whispersync.Model { public partial class NumberList { public Java.Lang.Object DeepCopy(){ return DeepCopy (); } } } 2013/11/27 Matteo Polito > I've created a new class "NumberList"

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Matteo Polito
Ok, this should be right!! using System; namespace Com.Amazon.Ags.Client.Whispersync.Model { public partial class NumberList { public Java.Lang.Object DeepCopy(){ return DeepCopy (); } } } 2013/11/27 Matteo Polito > O, this should be right!! > > using

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Matteo Polito
I've created a new class "NumberList" in addition directory, It's partial. using System; namespace Com.Amazon.Ags.Client.Whispersync.Model { public partial class NumberList { public Java.Lang.Object DeepCopy(){ return this; } } } Now it compiles, but is thi

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Matteo Polito
I've created a new class "NumberList" in addition directory, It's partial. using System; namespace Com.Amazon.Ags.Client.Whispersync.Model { public partial class NumberList { public Java.Lang.Object DeepCopy(){ return this; } } } But is this right? Thanks

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Matteo Polito
Hi, thanks again for you answer. You're right, it's abstract. public abstract partial class NumberList : global::Java.Lang.Object, global ::Com.Amazon.Ags.Api.Whispersync.Model.ISyncableNumberList, global::Com. Amazon.Ags.Client.Whispersync.Model.IMergeable Now I don't know what to do! Have you a

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Jonathan Pryor
On Nov 27, 2013, at 3:57 AM, Matteo Polito wrote: > Com.Amazon.Ags.Client.Whispersync.Model.NumberList.cs(80,80): Error CS0103: > The name `DeepCopy' does not exist in the current context (CS0103) > (GameCircle.MonoDroid) > > The method is: // This method is explicitly implemented as a member o

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Matteo Polito
Hi, thanks for your answer. I've solved first two problems using this: protected *Now I have to solve this. How to do?* Com.Amazon.Ags.Client.Whispersync.Model.NumberList.cs(80,80): Error CS0103: The name `DeepCopy' does not exist in the current context (CS0103) (GameCircle.MonoDroid) The meth

Re: [mono-android] GameCircle Amazon

2013-11-26 Thread Jonathan Pryor
On Nov 26, 2013, at 3:43 AM, Matteo Polito wrote: > These are errors that I have: > > Com.Amazon.Ags.Client.Whispersync.GameDataSingleMap.cs(23,23): Error CS0738: > `Com.Amazon.Ags.Client.Whispersync.GameDataSingleMap' does not implement > interface member > `Com.Amazon.Ags.Client.Whispersync.

[mono-android] GameCircle Amazon

2013-11-26 Thread Matteo Polito
Hi guys, I've a problem. I've to use on my Android Application GameCircle by Amazon. Here the api reference:https://developer.amazon.com/sdk/gamecircle.html These are errors that I have: Com.Amazon.Ags.Client.Whispersync.GameDataSingleMap.cs(23,23): Error CS0738: `Com.Amazon.Ags.Client.Whispersy