diff --git a/Editor/Scripts/IssueReportFormWindow.cs b/Editor/Scripts/IssueReportFormWindow.cs index f978f322..8835c5ca 100644 --- a/Editor/Scripts/IssueReportFormWindow.cs +++ b/Editor/Scripts/IssueReportFormWindow.cs @@ -1,5 +1,5 @@ using System.IO; -using Unity.Plastic.Newtonsoft.Json.Linq; +using Newtonsoft.Json.Linq; using UnityEditor; using UnityEngine; using UnityEngine.Networking; diff --git a/Runtime/Scripts/Beacon/Connectors/BeaconConnectorFactory.cs b/Runtime/Scripts/Beacon/Connectors/BeaconConnectorFactory.cs index cdecd041..3d519324 100644 --- a/Runtime/Scripts/Beacon/Connectors/BeaconConnectorFactory.cs +++ b/Runtime/Scripts/Beacon/Connectors/BeaconConnectorFactory.cs @@ -18,6 +18,7 @@ public static IBeaconConnector CreateConnector(RuntimePlatform platform, WalletE case RuntimePlatform.WindowsPlayer: case RuntimePlatform.WindowsEditor: case RuntimePlatform.LinuxPlayer: + case RuntimePlatform.LinuxEditor: case RuntimePlatform.OSXPlayer: case RuntimePlatform.OSXEditor: return new BeaconConnectorDotNet(eventManager);