From e24c860d489f95876fcb696c37faf0eec4279ebd Mon Sep 17 00:00:00 2001 From: Max Heimbrock <43608204+MaxHeimbrock@users.noreply.github.com> Date: Fri, 3 Jul 2026 14:37:24 +0200 Subject: [PATCH] Guarding for iOS and Unity editor case --- Runtime/Scripts/Internal/FFI/NativeMethods.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/Scripts/Internal/FFI/NativeMethods.cs b/Runtime/Scripts/Internal/FFI/NativeMethods.cs index 3f4e662d..7fc9a2d0 100644 --- a/Runtime/Scripts/Internal/FFI/NativeMethods.cs +++ b/Runtime/Scripts/Internal/FFI/NativeMethods.cs @@ -10,7 +10,7 @@ namespace LiveKit.Internal.FFI [SuppressUnmanagedCodeSecurity] internal static class NativeMethods { - #if UNITY_IOS + #if UNITY_IOS && !UNITY_EDITOR const string Lib = "__Internal"; #else const string Lib = "livekit_ffi";