Closed eugene-khyst closed 3 years ago
When trying to package for Win64 the sample https://github.com/getnamo/socketio-client-ue4-example and execute the binary WindowsNoEditor\sioclient.exe I have an error:
WindowsNoEditor\sioclient.exe
Plugin 'SocketIOClient' failed to load because module 'SIOJson' could not be found.
I package the project the following way:
The issue is similar to https://github.com/getnamo/socketio-client-ue4/issues/54 but the described solution doesn't work in my case. I copied binaries instead of sources to the Plugins directory.
Plugins
You may need to add an empty c++ class to your project to force the engine to recompile the plugin for packaged mode.
See https://github.com/getnamo/socketio-client-ue4#github
@getnamo, thanks! It works now. The only thing I had to do is adding an empty C++ class:
When trying to package for Win64 the sample https://github.com/getnamo/socketio-client-ue4-example and execute the binary
WindowsNoEditor\sioclient.exe
I have an error:I package the project the following way:
The issue is similar to https://github.com/getnamo/socketio-client-ue4/issues/54 but the described solution doesn't work in my case. I copied binaries instead of sources to the
Plugins
directory.