Re: [mono-android] DateTime.Now

2013-01-31 Thread Paul Johnson
Hi, Is there any way to use the time format provide by Android system (and can adapt to the user's setting such as "Use 24 Format or not" ?) It should already by using the android system. For the wrong character being used, I would put that into the monodroid bugzilla Paul -- "Space," it s

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

2013-01-31 Thread jaanus_k
Hi, My Friends JSON looks like this: { "717310901": { "id": "717310901", "name": "Test 1" }, "10114454617": { "id": "10114454617", "name": "Test 2" }, "10773805478": { "id": "10773805478", "name": "Test 3" } } How I can parse i

Re: [mono-android] DateTime.Now

2013-01-31 Thread Jonathan Pryor
On Jan 30, 2013, at 10:29 PM, Xperia wrote: > If the language is set to Chinese, the following shows 2012/1/31 上11時14分18秒 > > The problem is the character "上" It should be "上午" which represents "AM" > instead of "上". Please file a bug in bugzilla.xamarin.com. This is a bug in our locale data:

Re: [mono-android] DateTime.Now

2013-01-31 Thread Xperia
Hi, thanks for your reply. I have filed this bug with bugzilla. -Xperia -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/DateTime-Now-issue-in-different-locales-tp5712811p5712815.html Sent from the Mono for Android mailing list archive at Nabble.com. ___

[mono-android] Build failed. MSBuild operation failed

2013-01-31 Thread technohead
Hi guys, I've created a new Mono for Android library project, added a bunch of pre-existing code files to it and then tried to compile it, but am getting the error: "Build failed. MSBuild operation failed". This is from the current stable version of MonoDevelop running on OS X, with the current

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

2013-01-31 Thread Spencer
This will do what you want I think - public class JsonSerializer { private static readonly JsonSerializerSettings SerializationSettings = new JsonSerializerSettings { ContractResolver = new using Newtonsoft.Json.Serialization.LowercaseContractResolver() };

Re: [mono-android] Build failed. MSBuild operation failed

2013-01-31 Thread technohead
Looks like this problem occurs when there's another copy of MonoDevelop running at the same time. Dennis -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Build-failed-MSBuild-operation-failed-tp5712816p5712818.html Sent from the Mono for Android mailing list archi

Re: [mono-android] Build failed. MSBuild operation failed

2013-01-31 Thread Jonathan Pryor
On Jan 31, 2013, at 8:53 PM, technohead wrote: > I've created a new Mono for Android library project, added a bunch of > pre-existing code files to it and then tried to compile it, but am getting > the error: "Build failed. MSBuild operation failed". It would be handy to enable diagnostic out

Re: [mono-android] Builderror

2013-01-31 Thread Jonathan Pryor
On Jan 30, 2013, at 10:35 AM, "Hänke, Maik" wrote: > The error message appearing in the build log is "!! > tis.truckbox.muxer.lib.jar" (10 exclamation marks, no further information...) That's not an error message. That's a message written to stderr. (It's debug spew that we probably sho

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

2013-01-31 Thread jaanus_k
Hi, Thanks for reply but this is not what I need. Problem is that parser doesn't know what to parse because property names are just FaceBook ID values like "717310901". So - how I can tell to parser that I don't want to parse these "717310901" parts but only list of friends objects: { -->Friends