I'm trying to log events on my app via Google Analytics. I decided that I want these events to be logged in JSON format for easy processing later on, so there is a need for logging event categories such as
{gameplay:'idByName'}
and event labels such as:
{o:['838','851','793','843'], g:[1], t:'6'}
The meaning of the data is irrelevant, but what's important is that I see these strings fine on my console before reporting them to Google and when I view them in my analytics dashboard (sadly, 24 hours later) I get buggy strings such as:
{gameplay:idByName}
or
{o:[64,*14,)3,800], g:[1], t:!}
Right now I am unable to verify which label on the console belongs to which label on the analytics dashboard, but what can be understood from this is that the characters are being corrupted for some reason. Also, I am using the
\'
format for defining a single apostrophe in an NSString. Any ideas as to why this is happening will be gladly accepted. Thank you!