[MonoTouch] JSON Serialization

2011-09-16 Thread shawnlehner
I am trying to implement some JSON serialization for service communication in my app. It seems that every solution I try ends up with a mtouch failed with no output (1) when building for the device. I have tried the following libraries: - fastJSON - Newtonsoft.Json - System.Json (Works but has

Re: [MonoTouch] JSON Serialization

2011-09-16 Thread ayoung
Most libraries aren't directly compatible with MonoTouch because of AOT. See the Newtonsoft.Json port for MonoTouch here. https://github.com/chrisntr/Newtonsoft.Json On Friday, September 16, 2011 at 10:22, shawnlehner [via MonoTouch] wrote: I am trying to implement some JSON serialization

Re: [MonoTouch] JSON Serialization

2011-09-16 Thread shawnlehner
Thanks for the reply! I should have been more specific ... I was actually using Newtonsoft.Json.MonoTouch.dll when testing that library. Is there a way to get more info on what exactly is causing mtouch to fail? Thanks! -- View this message in context:

Re: [MonoTouch] JSON Serialization

2011-09-16 Thread Sebastien Pouliot
Hello Shawn, You can add -v -v -v options to additional mtouch arguments (right click on your project, select Option, then iPhone Build) to enable a more verbose builds. Anything that ends up non-useful, like mtouch failed with no output (1), should be reported as a bug report on