Really I like Realm but I had an issue when I try to parse my JSON, it doesn't support primitive arrays, like "Melchior" (from Realm Team) told me that : Realm currently doesn't support primitive arrays. Your JSON has this:
"languages" : ["fr", "en"]
For Realm to automatically map the JSON to your MyString class it would have to be converted to something like this:
"languages" : [ { "str" : "fr"} , { "str" : "en" } ]
The problem is I can't change my JSON so what I supposed to do. I thought to use something like that RealmLIst but it gives me that error : Error:(11, 8) error: Type java.util.ArrayList of field list is not supported waiting for your response.