Re: [mono-android] Resources in Mono for Android Library Project

2012-10-08 Thread javitxin
Did you get any kind of result with friday's attached file Atsushi Eno? -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Resources-in-Mono-for-Android-Library-Project-tp5626331p5712131.html Sent from the Mono for Android mailing list archive at Nabble.com.

Re: [mono-android] problem inserting data in Sql Server in release mode

2012-10-08 Thread HemSingh
I have started a thread on xamarin for the same & it is solved there. so giving the link here if someone visits this thread for help in future. http://forums.xamarin.com/discussion/comment/160 - Thanks & Regards, Hem Singh -- View this me

[mono-android] parse facebook friend list in josn

2012-10-08 Thread HemSingh
Hi, I am getting facebook friends list in the following format: How can I parse them with System.Json in I am able to parse the profile values of a user but not friends list. I have tried many options but not succeeded. - Thanks & Regards, Hem Singh -- View this message in context: h

[mono-android] Detecting Current Location with postalCode

2012-10-08 Thread adeshaiet
Hi, How to detect current location with postal Code and using Mono for Android and using Network technologies both Wife and Gps -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Detecting-Current-Location-with-postalCode-tp5712134.html Sent from the Mono

Re: [mono-android] [MonoTouch] Introducing the Xamarin Forums

2012-10-08 Thread Ryan Paul
We've been working with Vanilla to improve a number of things, one of which is the amount of information that is included in e-mail notifications. You should start to see notifications include the full text of messages soon, if you aren't already. :-) -- Ryan Paul Xamarin On Friday, October

Re: [mono-android] parse facebook friend list in josn

2012-10-08 Thread Tomasz Cielecki
Why do you want to parse it when you could just deserialize it into objects? Use contracts like so: [DataContract] public class Friend { [DataMember(Name = "name")] public string Name { get; set; } [DataMember(Name = "id")] public string { get; set; } } [DataContract] pub

[mono-android] Does monodroid have more networking capability than a normal native app?

2012-10-08 Thread notig
this may be a stupid question but does using monodroid give you more tools... less tools.. or the same tools for networking a mobile app? For instance a multiplayer game? Also.. as a side question... does using monodroid make cheating harder than if your game was programmed in html5 and Javascript

Re: [mono-android] Does monodroid have more networking capability than a normal native app?

2012-10-08 Thread Jonathan Pryor
On Oct 8, 2012, at 10:33 PM, notig wrote: > does using monodroid give you more tools... less tools.. or the same tools > for networking a mobile app? For instance a multiplayer game? More tools. In addition to the Stream-based I/O that Java provides, you have SOAP support, partial WCF support,