Quantcast
Channel: Questions in topic: "dll"
Viewing all articles
Browse latest Browse all 706

Unity mobile game build working from personal license but giving compile error with pro license

$
0
0
I'm using a paid [library][1] from asset store for video and voice chat. That is situated in Assets directory. Now the problem is that whenever I build app for release I'm encountering compile errors that some of the namespaces are missing from that library dll. However, this doesn't happen with personal license. We're using github actions for continous integration. However, build from unity editor works perfectly with both licenses but problem is when I build it in ci. Also, this problem is arising from last two days only. Before that all the builds were perfectly fine with pro license in ci. I'm just using different license when building in ci for test and release builds, otherwise all the things are same. Even production app with personal license is working. I've looked at lot of things but not able to find out the cause of the issue. Here're some logs from pro license issue. 2021-07-08T07:10:23.6779766Z -----CompilerOutput:-stdout--exitcode: 1--compilationhadfailure: True--outfile: Temp/awrtc_common.dll 2021-07-08T07:10:23.6783872Z Microsoft (R) Visual C# Compiler version 2.9.1.65535 (9d34608e) 2021-07-08T07:10:23.6786945Z Copyright (C) Microsoft Corporation. All rights reserved. 2021-07-08T07:10:23.6789035Z 2021-07-08T07:10:23.6794080Z Assets/WebRtcVideoChat/scripts/common/TextureFrame.cs(6,7): error CS0246: The type or namespace name 'Byn' could not be found (are you missing a using directive or an assembly reference?) 2021-07-08T07:10:23.6801591Z Assets/WebRtcVideoChat/scripts/common/TextureFrame.cs(8,34): error CS0246: The type or namespace name 'IFrame' could not be found (are you missing a using directive or an assembly reference?) 2021-07-08T07:10:23.6809401Z Assets/WebRtcVideoChat/scripts/common/TextureFrame.cs(78,12): error CS0246: The type or namespace name 'FramePixelFormat' could not be found (are you missing a using directive or an assembly reference?) 2021-07-08T07:10:23.6814768Z -----CompilerOutput:-stderr---------- 2021-07-08T07:10:23.6818171Z -----EndCompilerOutput--------------- Also, there is some thing I've noticed in the logs. Following logs are with pro license problem. 2021-07-08T07:10:21.7846453Z - Starting compile Library/ScriptAssemblies/awrtc_common.dll 2021-07-08T07:10:22.5731369Z - Finished compile Library/ScriptAssemblies/UnityEngine.Purchasing.AppleStub.dll in 1.644748 seconds 2021-07-08T07:10:22.6002468Z - Starting compile Library/ScriptAssemblies/UnityEngine.Purchasing.AppleMacosStub.dll 2021-07-08T07:10:22.7522381Z - Finished compile Library/ScriptAssemblies/UnityEngine.Purchasing.SecurityCore.dll in 1.888381 seconds 2021-07-08T07:10:22.7964622Z - Starting compile Library/ScriptAssemblies/UnityEngine.Purchasing.SecurityStub.dll 2021-07-08T07:10:22.8365325Z - Finished compile Library/ScriptAssemblies/UnityEngine.Purchasing.WinRTStub.dll in 1.840064 seconds 2021-07-08T07:10:22.8963169Z - Starting compile Library/ScriptAssemblies/spine-unity-editor.dll 2021-07-08T07:10:23.4977242Z 2021-07-08T07:10:23.4981354Z -----Compiler Commandline Arguments: 2021-07-08T07:10:23.4984302Z Filename: /opt/unity/Editor/Data/Tools/RoslynScripts/unity_csc.sh 2021-07-08T07:10:23.4989203Z Arguments: /noconfig @Temp/UnityTempFile-23a283db6773c8b95b8e410aead496fa 2021-07-08T07:10:23.5031608Z Responsefile: Temp/UnityTempFile-23a283db6773c8b95b8e410aead496fa Contents: 2021-07-08T07:10:23.5034835Z /target:library 2021-07-08T07:10:23.5069827Z /nowarn:0169 2021-07-08T07:10:23.5071589Z /out:"Temp/awrtc_common.dll" 2021-07-08T07:10:23.5073021Z /debug:portable 2021-07-08T07:10:23.5075152Z /optimize- 2021-07-08T07:10:23.5076593Z /nostdlib+ 2021-07-08T07:10:23.5317728Z /preferreduilang:en-US 2021-07-08T07:10:23.5320040Z /langversion:latest 2021-07-08T07:10:23.5322894Z /reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" 2021-07-08T07:10:23.5326592Z /reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" 2021-07-08T07:10:23.5330341Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll" 2021-07-08T07:10:23.5334515Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" 2021-07-08T07:10:23.5339434Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" 2021-07-08T07:10:23.5344798Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" 2021-07-08T07:10:23.5350142Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" 2021-07-08T07:10:23.5355406Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" 2021-07-08T07:10:23.5360311Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" 2021-07-08T07:10:23.5364956Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" 2021-07-08T07:10:23.5370005Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" 2021-07-08T07:10:23.5375622Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" 2021-07-08T07:10:23.5380651Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" 2021-07-08T07:10:23.5385788Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" 2021-07-08T07:10:23.5392621Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" 2021-07-08T07:10:23.5397623Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" 2021-07-08T07:10:23.5402607Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" 2021-07-08T07:10:23.5407423Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" 2021-07-08T07:10:23.5412183Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" 2021-07-08T07:10:23.5417010Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" 2021-07-08T07:10:23.5422131Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" 2021-07-08T07:10:23.5427423Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" 2021-07-08T07:10:23.5432345Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" 2021-07-08T07:10:23.5437782Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" 2021-07-08T07:10:23.5443936Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" 2021-07-08T07:10:23.5449354Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" 2021-07-08T07:10:23.5455336Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" 2021-07-08T07:10:23.5460796Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" 2021-07-08T07:10:23.5465721Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" 2021-07-08T07:10:23.5512209Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" 2021-07-08T07:10:23.5517795Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" 2021-07-08T07:10:23.5523350Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" 2021-07-08T07:10:23.5528780Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" 2021-07-08T07:10:23.5534050Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" 2021-07-08T07:10:23.5539135Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" 2021-07-08T07:10:23.5544144Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" 2021-07-08T07:10:23.5549337Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" 2021-07-08T07:10:23.5554453Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" 2021-07-08T07:10:23.5559066Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" 2021-07-08T07:10:23.5564280Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" 2021-07-08T07:10:23.5569485Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" 2021-07-08T07:10:23.5574790Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" 2021-07-08T07:10:23.5579995Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" 2021-07-08T07:10:23.5584650Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" 2021-07-08T07:10:23.5589489Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" 2021-07-08T07:10:23.5594198Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll" 2021-07-08T07:10:23.5598734Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" 2021-07-08T07:10:23.5604065Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" 2021-07-08T07:10:23.5609460Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" 2021-07-08T07:10:23.5615127Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" 2021-07-08T07:10:23.5620845Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" 2021-07-08T07:10:23.5627553Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" 2021-07-08T07:10:23.5634058Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" 2021-07-08T07:10:23.5640492Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" 2021-07-08T07:10:23.5646788Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" 2021-07-08T07:10:23.5651920Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" 2021-07-08T07:10:23.5656342Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" 2021-07-08T07:10:23.5661243Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" 2021-07-08T07:10:23.5665993Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" 2021-07-08T07:10:23.5712921Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" 2021-07-08T07:10:23.5717661Z /reference:"/opt/unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" 2021-07-08T07:10:23.5721471Z /reference:"/opt/unity/Editor/Data/Managed/UnityEditor.dll" 2021-07-08T07:10:23.5725432Z /reference:"/opt/unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll" 2021-07-08T07:10:23.5729479Z /reference:"/opt/unity/Editor/Data/Managed/UnityEditor.Graphs.dll" 2021-07-08T07:10:23.5735081Z /reference:"/opt/unity/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" 2021-07-08T07:10:23.5741548Z /reference:"/opt/unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" 2021-07-08T07:10:23.5747442Z /reference:"/github/workspace/Library/PackageCache/com.unity.analytics@3.3.5/Unity.Analytics.Editor.dll" 2021-07-08T07:10:23.5753059Z /reference:"/github/workspace/Library/PackageCache/com.unity.analytics@3.3.5/Unity.Analytics.Tracker.dll" 2021-07-08T07:10:23.5759496Z /reference:"/github/workspace/Library/PackageCache/com.unity.analytics@3.3.5/AnalyticsStandardEvents/Unity.Analytics.StandardEvents.dll" 2021-07-08T07:10:23.5766759Z /reference:"/github/workspace/Library/PackageCache/com.unity.ext.nunit@1.0.5/net35/unity-custom/nunit.framework.dll" 2021-07-08T07:10:23.5771441Z /reference:"/opt/unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll" 2021-07-08T07:10:23.5776066Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" 2021-07-08T07:10:23.5781075Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" 2021-07-08T07:10:23.5786299Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" 2021-07-08T07:10:23.5792497Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" 2021-07-08T07:10:23.5798302Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" 2021-07-08T07:10:23.5803533Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" 2021-07-08T07:10:23.5809246Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" 2021-07-08T07:10:23.5815625Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" 2021-07-08T07:10:23.5821781Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" 2021-07-08T07:10:23.5828262Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" 2021-07-08T07:10:23.5923639Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" 2021-07-08T07:10:23.5928504Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" 2021-07-08T07:10:23.5933675Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" 2021-07-08T07:10:23.5939023Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" 2021-07-08T07:10:23.5944858Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" 2021-07-08T07:10:23.5950812Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" 2021-07-08T07:10:23.5956437Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" 2021-07-08T07:10:23.5962863Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" 2021-07-08T07:10:23.5969780Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" 2021-07-08T07:10:23.5977183Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" 2021-07-08T07:10:23.5982870Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" 2021-07-08T07:10:23.5988496Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" 2021-07-08T07:10:23.6001241Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" 2021-07-08T07:10:23.6007403Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" 2021-07-08T07:10:23.6013689Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" 2021-07-08T07:10:23.6019220Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" 2021-07-08T07:10:23.6024834Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" 2021-07-08T07:10:23.6031496Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" 2021-07-08T07:10:23.6037095Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" 2021-07-08T07:10:23.6043044Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" 2021-07-08T07:10:23.6048983Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" 2021-07-08T07:10:23.6054355Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" 2021-07-08T07:10:23.6059452Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" 2021-07-08T07:10:23.6065249Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" 2021-07-08T07:10:23.6070628Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" 2021-07-08T07:10:23.6076077Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" 2021-07-08T07:10:23.6081216Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" 2021-07-08T07:10:23.6086519Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" 2021-07-08T07:10:23.6091621Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" 2021-07-08T07:10:23.6096752Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" 2021-07-08T07:10:23.6101365Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" 2021-07-08T07:10:23.6106057Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" 2021-07-08T07:10:23.6111469Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" 2021-07-08T07:10:23.6117302Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" 2021-07-08T07:10:23.6122486Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" 2021-07-08T07:10:23.6127404Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" 2021-07-08T07:10:23.6132365Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" 2021-07-08T07:10:23.6137307Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" 2021-07-08T07:10:23.6142915Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" 2021-07-08T07:10:23.6148646Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" 2021-07-08T07:10:23.6154389Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" 2021-07-08T07:10:23.6159714Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" 2021-07-08T07:10:23.6164724Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" 2021-07-08T07:10:23.6169826Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" 2021-07-08T07:10:23.6175503Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" 2021-07-08T07:10:23.6180670Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" 2021-07-08T07:10:23.6185834Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" 2021-07-08T07:10:23.6232148Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" 2021-07-08T07:10:23.6237863Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" 2021-07-08T07:10:23.6243937Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" 2021-07-08T07:10:23.6250014Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" 2021-07-08T07:10:23.6255308Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" 2021-07-08T07:10:23.6261882Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" 2021-07-08T07:10:23.6269353Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" 2021-07-08T07:10:23.6274856Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" 2021-07-08T07:10:23.6280794Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" 2021-07-08T07:10:23.6287225Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" 2021-07-08T07:10:23.6293683Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" 2021-07-08T07:10:23.6300012Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" 2021-07-08T07:10:23.6305309Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" 2021-07-08T07:10:23.6310347Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" 2021-07-08T07:10:23.6316529Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" 2021-07-08T07:10:23.6322934Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" 2021-07-08T07:10:23.6329265Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" 2021-07-08T07:10:23.6336042Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" 2021-07-08T07:10:23.6342867Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" 2021-07-08T07:10:23.6349753Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" 2021-07-08T07:10:23.6356190Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" 2021-07-08T07:10:23.6361944Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" 2021-07-08T07:10:23.6367422Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" 2021-07-08T07:10:23.6372626Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" 2021-07-08T07:10:23.6378373Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" 2021-07-08T07:10:23.6384135Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" 2021-07-08T07:10:23.6390022Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" 2021-07-08T07:10:23.6395273Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" 2021-07-08T07:10:23.6400622Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" 2021-07-08T07:10:23.6405972Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" 2021-07-08T07:10:23.6410659Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" 2021-07-08T07:10:23.6415492Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" 2021-07-08T07:10:23.6420277Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" 2021-07-08T07:10:23.6424862Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" 2021-07-08T07:10:23.6430413Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" 2021-07-08T07:10:23.6435543Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" 2021-07-08T07:10:23.6440421Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" 2021-07-08T07:10:23.6445640Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" 2021-07-08T07:10:23.6450848Z /reference:"/opt/unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" 2021-07-08T07:10:23.6456964Z /reference:"/opt/unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" 2021-07-08T07:10:23.6463553Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" 2021-07-08T07:10:23.6468880Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" 2021-07-08T07:10:23.6472846Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" 2021-07-08T07:10:23.6477492Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" 2021-07-08T07:10:23.6482755Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" 2021-07-08T07:10:23.6487743Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" 2021-07-08T07:10:23.6491951Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" 2021-07-08T07:10:23.6496917Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" 2021-07-08T07:10:23.6502056Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" 2021-07-08T07:10:23.6506965Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" 2021-07-08T07:10:23.6511473Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" 2021-07-08T07:10:23.6516783Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" 2021-07-08T07:10:23.6521133Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" 2021-07-08T07:10:23.6525911Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" 2021-07-08T07:10:23.6530368Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" 2021-07-08T07:10:23.6534365Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll" 2021-07-08T07:10:23.6538247Z /reference:"/opt/unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" 2021-07-08T07:10:23.6541278Z /define:UNITY_2019_4_10 2021-07-08T07:10:23.6543284Z /define:UNITY_2019_4 2021-07-08T07:10:23.6545370Z /define:UNITY_2019 2021-07-08T07:10:23.6547609Z /define:UNITY_5_3_OR_NEWER 2021-07-08T07:10:23.6549726Z /define:UNITY_5_4_OR_NEWER 2021-07-08T07:10:23.6551835Z /define:UNITY_5_5_OR_NEWER 2021-07-08T07:10:23.6554055Z /define:UNITY_5_6_OR_NEWER 2021-07-08T07:10:23.6556222Z /define:UNITY_2017_1_OR_NEWER 2021-07-08T07:10:23.6558355Z /define:UNITY_2017_2_OR_NEWER 2021-07-08T07:10:23.6560501Z /define:UNITY_2017_3_OR_NEWER 2021-07-08T07:10:23.6562610Z /define:UNITY_2017_4_OR_NEWER 2021-07-08T07:10:23.6564831Z /define:UNITY_2018_1_OR_NEWER 2021-07-08T07:10:23.6566944Z /define:UNITY_2018_2_OR_NEWER 2021-07-08T07:10:23.6569092Z /define:UNITY_2018_3_OR_NEWER 2021-07-08T07:10:23.6571231Z /define:UNITY_2018_4_OR_NEWER 2021-07-08T07:10:23.6573319Z /define:UNITY_2019_1_OR_NEWER 2021-07-08T07:10:23.6575442Z /define:UNITY_2019_2_OR_NEWER 2021-07-08T07:10:23.6577590Z /define:UNITY_2019_3_OR_NEWER 2021-07-08T07:10:23.6579717Z /define:UNITY_2019_4_OR_NEWER 2021-07-08T07:10:23.6581870Z /define:PLATFORM_ARCH_64 2021-07-08T07:10:23.6584226Z /define:UNITY_64 2021-07-08T07:10:23.6586376Z /define:UNITY_INCLUDE_TESTS 2021-07-08T07:10:23.6588780Z /define:UNITY_ANALYTICS 2021-07-08T07:10:23.6590961Z /define:ENABLE_AUDIO 2021-07-08T07:10:23.6593093Z /define:ENABLE_CACHING 2021-07-08T07:10:23.6595285Z /define:ENABLE_CLOTH 2021-07-08T07:10:23.6597452Z /define:ENABLE_MICROPHONE 2021-07-08T07:10:23.6599792Z /define:ENABLE_MULTIPLE_DISPLAYS 2021-07-08T07:10:23.6602088Z /define:ENABLE_PHYSICS 2021-07-08T07:10:23.6604445Z /define:ENABLE_TEXTURE_STREAMING 2021-07-08T07:10:23.6606704Z /define:ENABLE_UNET 2021-07-08T07:10:23.6608675Z /define:ENABLE_LZMA 2021-07-08T07:10:23.6610687Z /define:ENABLE_UNITYEVENTS 2021-07-08T07:10:23.6612849Z /define:ENABLE_VR 2021-07-08T07:10:23.6614976Z /define:ENABLE_WEBCAM 2021-07-08T07:10:23.6617255Z /define:ENABLE_UNITYWEBREQUEST 2021-07-08T07:10:23.6619507Z /define:ENABLE_WWW 2021-07-08T07:10:23.6621681Z /define:ENABLE_CLOUD_SERVICES 2021-07-08T07:10:23.6624141Z /define:ENABLE_CLOUD_SERVICES_COLLAB 2021-07-08T07:10:23.6626777Z /define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS 2021-07-08T07:10:23.6629719Z /define:ENABLE_CLOUD_SERVICES_ADS 2021-07-08T07:10:23.6632338Z /define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST 2021-07-08T07:10:23.6635228Z /define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING 2021-07-08T07:10:23.6637998Z /define:ENABLE_CLOUD_SERVICES_PURCHASING 2021-07-08T07:10:23.6640608Z /define:ENABLE_CLOUD_SERVICES_ANALYTICS 2021-07-08T07:10:23.6643187Z /define:ENABLE_CLOUD_SERVICES_UNET 2021-07-08T07:10:23.6645741Z /define:ENABLE_CLOUD_SERVICES_BUILD 2021-07-08T07:10:23.6648172Z /define:ENABLE_CLOUD_LICENSE 2021-07-08T07:10:23.6650478Z /define:ENABLE_EDITOR_HUB_LICENSE 2021-07-08T07:10:23.6652878Z /define:ENABLE_WEBSOCKET_CLIENT 2021-07-08T07:10:23.6655319Z /define:ENABLE_DIRECTOR_AUDIO 2021-07-08T07:10:23.6657641Z /define:ENABLE_DIRECTOR_TEXTURE 2021-07-08T07:10:23.6659961Z /define:ENABLE_MANAGED_JOBS 2021-07-08T07:10:23.6662544Z /define:ENABLE_MANAGED_TRANSFORM_JOBS 2021-07-08T07:10:23.6665208Z /define:ENABLE_MANAGED_ANIMATION_JOBS 2021-07-08T07:10:23.6667924Z /define:ENABLE_MANAGED_AUDIO_JOBS 2021-07-08T07:10:23.6670220Z /define:INCLUDE_DYNAMIC_GI 2021-07-08T07:10:23.6673124Z /define:ENABLE_MONO_BDWGC 2021-07-08T07:10:23.6675733Z /define:ENABLE_SCRIPTING_GC_WBARRIERS 2021-07-08T07:10:23.6678357Z /define:PLATFORM_SUPPORTS_MONO 2021-07-08T07:10:23.6680683Z /define:RENDER_SOFTWARE_CURSOR 2021-07-08T07:10:23.6682906Z /define:ENABLE_VIDEO 2021-07-08T07:10:23.6685222Z /define:PLATFORM_STANDALONE 2021-07-08T07:10:23.6687612Z /define:PLATFORM_STANDALONE_LINUX 2021-07-08T07:10:23.6690069Z /define:UNITY_STANDALONE_LINUX 2021-07-08T07:10:23.6692335Z /define:UNITY_STANDALONE 2021-07-08T07:10:23.6694764Z /define:UNITY_STANDALONE_LINUX_API 2021-07-08T07:10:23.6697126Z /define:ENABLE_RUNTIME_GI 2021-07-08T07:10:23.6699290Z /define:ENABLE_MOVIES 2021-07-08T07:10:23.6701384Z /define:ENABLE_NETWORK 2021-07-08T07:10:23.6703861Z /define:ENABLE_CRUNCH_TEXTURE_COMPRESSION 2021-07-08T07:10:23.6706404Z /define:ENABLE_CLUSTER_SYNC 2021-07-08T07:10:23.6708848Z /define:ENABLE_CLUSTERINPUT 2021-07-08T07:10:23.6711282Z /define:ENABLE_SPATIALTRACKING 2021-07-08T07:10:23.6713953Z /define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES 2021-07-08T07:10:23.6716802Z /define:ENABLE_WEBSOCKET_HOST 2021-07-08T07:10:23.6718989Z /define:ENABLE_MONO 2021-07-08T07:10:23.6721138Z /define:NET_STANDARD_2_0 2021-07-08T07:10:23.6723325Z /define:ENABLE_PROFILER 2021-07-08T07:10:23.6725506Z /define:DEBUG 2021-07-08T07:10:23.6727459Z /define:TRACE 2021-07-08T07:10:23.6729546Z /define:UNITY_ASSERTIONS 2021-07-08T07:10:23.6731706Z /define:UNITY_EDITOR 2021-07-08T07:10:23.6733861Z /define:UNITY_EDITOR_64 2021-07-08T07:10:23.6736037Z /define:UNITY_EDITOR_LINUX 2021-07-08T07:10:23.6738420Z /define:ENABLE_UNITY_COLLECTIONS_CHECKS 2021-07-08T07:10:23.6740885Z /define:ENABLE_BURST_AOT 2021-07-08T07:10:23.6743090Z /define:UNITY_TEAM_LICENSE 2021-07-08T07:10:23.6745343Z /define:UNITY_PRO_LICENSE 2021-07-08T07:10:23.6747890Z /define:ENABLE_CUSTOM_RENDER_TEXTURE 2021-07-08T07:10:23.6750245Z /define:ENABLE_DIRECTOR 2021-07-08T07:10:23.6752518Z /define:ENABLE_LOCALIZATION 2021-07-08T07:10:23.6754801Z /define:ENABLE_SPRITES 2021-07-08T07:10:23.6756964Z /define:ENABLE_TERRAIN 2021-07-08T07:10:23.6759071Z /define:ENABLE_TILEMAP 2021-07-08T07:10:23.6761264Z /define:ENABLE_TIMELINE 2021-07-08T07:10:23.6763659Z /define:ENABLE_LEGACY_INPUT_MANAGER 2021-07-08T07:10:23.6766001Z /define:TextMeshPro 2021-07-08T07:10:23.6768196Z /define:CSHARP_7_OR_LATER 2021-07-08T07:10:23.6770322Z /define:CSHARP_7_3_OR_NEWER 2021-07-08T07:10:23.6773087Z "Assets/WebRtcVideoChat/scripts/common/TextureFrame.cs" 2021-07-08T07:10:23.6775132Z 2021-07-08T07:10:23.6779766Z -----CompilerOutput:-stdout--exitcode: 1--compilationhadfailure: True--outfile: Temp/awrtc_common.dll 2021-07-08T07:10:23.6783872Z Microsoft (R) Visual C# Compiler version 2.9.1.65535 (9d34608e) 2021-07-08T07:10:23.6786945Z Copyright (C) Microsoft Corporation. All rights reserved. 2021-07-08T07:10:23.6789035Z 2021-07-08T07:10:23.6794080Z Assets/WebRtcVideoChat/scripts/common/TextureFrame.cs(6,7): error CS0246: The type or namespace name 'Byn' could not be found (are you missing a using directive or an assembly reference?) 2021-07-08T07:10:23.6801591Z Assets/WebRtcVideoChat/scripts/common/TextureFrame.cs(8,34): error CS0246: The type or namespace name 'IFrame' could not be found (are you missing a using directive or an assembly reference?) 2021-07-08T07:10:23.6809401Z Assets/WebRtcVideoChat/scripts/common/TextureFrame.cs(78,12): error CS0246: The type or namespace name 'FramePixelFormat' could not be found (are you missing a using directive or an assembly reference?) 2021-07-08T07:10:23.6814768Z -----CompilerOutput:-stderr---------- 2021-07-08T07:10:23.6818171Z -----EndCompilerOutput--------------- And following logs are with personal license which is working 2021-07-07T10:48:13.8098939Z - Starting compile Library/ScriptAssemblies/awrtc_common.dll 2021-07-07T10:48:13.9957701Z - Finished compile Library/ScriptAssemblies/UnityEngine.Purchasing.WinRTStub.dll in 1.986025 seconds 2021-07-07T10:48:14.0459437Z - Starting compile Library/ScriptAssemblies/UnityEngine.Purchasing.AppleMacosStub.dll 2021-07-07T10:48:14.2271675Z - Finished compile Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll in 2.109549 seconds 2021-07-07T10:48:14.2935061Z - Starting compile Library/ScriptAssemblies/spine-unity-editor.dll 2021-07-07T10:48:15.3602591Z - Finished compile Library/ScriptAssemblies/awrtc_common.dll in 1.550675 seconds Any suggestions are welcome. Thanks. [1]: https://assetstore.unity.com/packages/tools/network/webrtc-video-chat-68030

Viewing all articles
Browse latest Browse all 706

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>