In Tizen 2.1 I downloaded a Json from an url and I copied some parts of it into the phone using Tizen::Compose and it worked perfectly.
But since the 2.2, it seems that the longs are interpreted incorrectly, For example:
*** This is what I had before ***
"date"=12925480,
"otherKey"="otherValue"
*** This is what I have now
"date"=1,
29255e+09, <----- Syntax Error
"otherKey"="otherValue"
So is it a bug or is there something different to do ?