- Home /
What is assembly resolution exception?
So as question states what is assembly resolution exceptiona and why does it occur?
Answer by Bunny83 · Jul 08, 2018 at 09:28 AM
Sorry but this question is not about Unity but about a specific field of the .NET / Mono runtime (CLI).
Apart from that UnityAnswers is for concrete questions. If you get an assembly resolution exception you should get a stacktrace which tells you where it happend and then you know the code that is causing it.
Generally an assembly resolution exception tells you that the AppDomain is trying to localize an assembly that is in the referenced assembly list of your application or in the list of a referenced assembly, but couldn't find the right assembly file. This is generally a sign that you're either missing a required DLL file or it's located at the wrong place so your application can't find it. This exception is usually thrown if you try to load an assembly through reflection at runtime, but it may be caused by other things as well.
Without more information this is all you can get from us.
Hey thanks for the response , actually i was building my unity game for android and ios , when i try to build for android it worked perfectly , but when i am trying to build for IOS , this error occurs,
So @Bunny83 can you have a look into this , thanks in advance.