UWP project can't handle dynamic type and cause crashes
Hello, my game work normally on editor or when built to stand alone, but when I build to Univeral Windows Platform (I need the URL scheme deep linking) the project keep crashing.
.
Upon inspection I see that the crashes are happening at functions that uses dynamic
type e.g. private List<dynamic> ToGTV(dynamic[] args)
, and in Visual Studio output the function signature uses object instead ToGTV(System.Object[] args)
.
.
If I change the source code to use object e.g. private List<object> ToGTV(object[] args)
, then the function passes.
.
It is an external library though, so I can't really use modified code for production.
Is there anyway I can make the generated UWP solution to handle dynamic
type?
Your answer
Follow this Question
Related Questions
Using an exported project as a XAML UserControl 2 Answers
.sln file in latest version of Unity3D 2018 3 Answers
Updating to Unity 2018.3 changed default curly brace placement for new scripts. 0 Answers
How to Disconnect a client from the server properly using unity Netcode for GameObjects ? 0 Answers