This repository has been archived by the owner on May 7, 2022. It is now read-only.
Releases: Autokaka/json_object
Releases · Autokaka/json_object
0.1.0
- Removed .length, .add, .addAll methods and replace them with
apply()
method. - Fixed parse error when trying to parse Map like this:
{"time": "123456789"}
. This Map would be parsed into{"time": 123456789}
in JsonObject before, which is not right because it changes the original type of the value.