I am having an issue on a UI App that has a websocket server.
In debug mode, everything works perfectly fine.
But if I switch it to release/Release obfuscating mode, Soon as I attempt to connect via websocket, it crashes and boots the websocket connection instantly with this error:
Since I have no idea whats triggering this issue, I am unsure how to fix it.
In debug mode, everything works perfectly fine.
But if I switch it to release/Release obfuscating mode, Soon as I attempt to connect via websocket, it crashes and boots the websocket connection instantly with this error:
B4X:
2018-07-20 09:01:54.315:INFO:oejs.Server:JavaFX Application Thread: Started @1481ms
Server started
java.lang.RuntimeException: not supported
at anywheresoftware.b4j.objects.FxBA.cleanMessageLoop(FxBA.java:37)
at anywheresoftware.b4j.object.WebSocketModule$Adapter$ThreadHandler.run(WebSocketModule.java:182)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:748)
Since I have no idea whats triggering this issue, I am unsure how to fix it.