I'm using Gson to create a JSON String from a list of objects. This string then gets sent to our database. This works perfectly fine on my test device and emulator and it's stored correctly on the database when I run it on the devices from my laptop. Problems arise when I then upload our app to the Play Store: we're getting the strings in the following format stored on our database:
[{"a":true,"b":"Schedule 1","c":[true,true,true,true,true,true,true]}]
Whereas it's supposed to be something like this:
[{"active":true,"scheduleName":"Schedule 1","days":[true,true,true,true,true,true,true]}]
This happens for all schedules that get sent to our server. Can anyone help with this? Why is this happening?