snowplow / snowplow-unity-tracker

Snowplow event tracker for Unity. Add analytics to your Unity games and apps
http://snowplowanalytics.com
Apache License 2.0
16 stars 11 forks source link

Fix exception on Android caused by opening a shared connection to the event storage database #71

Closed matus-tomlein closed 1 year ago

matus-tomlein commented 1 year ago

On Android, the tracker tries to open a shared connection to the event storage LiteDB database causing this exception:

System.PlatformNotSupportedException: Shared mode is not supported in platforms that do not implement named mutex. ---> System.NotSupportedException: Specified method is not supported

Instead we should open a direct connection similar like we do on iOS.