Manish Joshi
Manish Joshi

Reputation: 11

Getting error in Unity Universal Windows Platform

I'm developing a 3D game on unity for UWP. I'm getting the following error while creating app package. Please help me how can I remove the error from my project.

enter image description here

The command ""E:\Game Project\Win Build\Unity\Tools\AssemblyConverter.exe" -platform=uap -lock="E:\Game Project\Win Build\Sub_Challenge\project.lock.json" -bits=32 -configuration=Debug -removeDebuggableAttribute=False -path="." -path="..\Players\UAP\x86\Debug" "E:\Game Project\Win Build\Sub_Challenge\Assembly-CSharp-firstpass.dll" "E:\Game Project\Win Build\Sub_Challenge\Assembly-CSharp.dll" "E:\Game Project\Win Build\Sub_Challenge\Assembly-UnityScript.dll" "E:\Game Project\Win Build\Sub_Challenge\UnityEngine.dll" "E:\Game Project\Win Build\Sub_Challenge\UnityEngine.Networking.dll" "E:\Game Project\Win Build\Sub_Challenge\UnityEngine.UI.dll" "E:\Game Project\Win Build\Sub_Challenge\HOTween.dll"" exited with code 1. Sub_Challenge E:\Game Project\Win Build\Sub_Challenge\Sub_Challenge.csproj 297

Thanks.

Upvotes: 0

Views: 563

Answers (1)

Andrii Krupka
Andrii Krupka

Reputation: 4306

HOTween doesn't support WinRT/UWP API.

In our project we changed from HOTWeen to DOTween library and all works good.

Upvotes: 1

Related Questions