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

Include link.xml and required DLLs in Resources folder for all platforms #30

Closed paulboocock closed 4 years ago

paulboocock commented 4 years ago

IL2CPP will remove unused code and the LiteDB framework requires System.Linq.Expressions.Interpreter.LightLambda. This can be fixed by adding a link.xml file to the Plugins folder within Unity containing:

<linker>
<assembly fullname="System.Core">
  <type fullname="System.Linq.Expressions.Interpreter.LightLambda" preserve="all" />
</assembly> 
</linker>