[Segmentation] Custom Event for Amazon Store

Hi there,

I want to use a custom event so i can differentate between Amazon and Googeplay. But how do i send that event only once even when user has uninstalled and reinstalled the app in future?

Please advise?
Thanks

If you have the Pro version of Unity, you have access to Raw Data Export. You could allow the event to be sent regardless, then use a query to select distinct deviceId from the raw logs which should accomplish what you need. Otherwise you could set a flag on the device, outside of the application in external storage, and handle this in code. There is more information on Raw Data Export here https://docs.unity3d.com/Manual/UnityAnalyticsRawDataExport.html and
https://support.unity3d.com/hc/en-us/articles/115004052703

Unforutnatly i dont have access to Pro version,
So other solution if i understood correctly, is i first check if i have already sent event (external storage) or not.
And it will show up. right?

Yes if it was sent once previously, it will be recognized in our system.

1 Like

Thank you very much Jeff :slight_smile: