Hey guys, just a quick question:
Does UGS (Unity Gaming Services) Analytics require user consent like a pop-up message asking them if I can collect a few basic info?
ConsentState state = EndUserConsent.GetConsentState();
state.AnalyticsIntent = ConsentStatus.Granted;
I saw it automatically sends data to analytics like that in addition to what I would try to collect (map, game mode, kills, match length, etc.). Meanwhile, I also see that most games don't need have any pop-ups like that, and I'd prefer also not to...
Event gameEnded {
"batteryLoad": "",
"buildGUUID": "",
"clientVersion": "",
"collectInsertedTimestamp": "",
"eventDate": "",
"eventID": "",
"eventLevel": "",
"eventName": "",
"eventTimestamp": "",
"eventUUID": "",
"eventVersion": "",
"gaUserAcquisitionChannel": "",
"gaUserAgeGroup": "",
"gaUserCountry": "",
"gaUserGender": "",
"gaUserStartDate": "",
"gameBundleID": "",
"idfv": "",
"mainEventID": "",
"msSinceLastEvent": "",
"platform": "",
"projectID": "",
"sdkMethod": "",
"sessionEndState": "",
"sessionID": "",
"timezoneOffset": "",
"unityInstallationID": "",
"unityPlayerID": "",
"userCountry": "",
"userID": ""
}
Thanks in advance!