Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

0 votes

We're testing out Wwise 2019.1.1.6977 with Unity 2019.1.7f1 for LuminOS, and noticed that when launching on a Magic Leap One device, no plugins are loading. This seems to be due to the path being incorrect as seen in the logs:

Example:

AKDEBUG : dlopen failed: library "/package/binlibAkSynthOne.so" not found

... etc. for each plugin...

The files are verified located in package/bin/libxxxxxx.so It seems that the path is missing a "/" after "bin".

When profiling in Wwise, this shows up as "Could not find plugin dynamic library <plugin>" and "Plug-in not found: <plugin>" when attempting to use them at runtime.

There seem to be no issues using plugins while in the Unity Editor with the same versions, this is only when deploying.

Any tips on how to resolve this?

in General Discussion by Brett S. (100 points)
After some investigation, we've managed to sort out a local fix.

We added a '/' after "bin" in line 259 of AkCommonPlatformSettings.cs and plugins now seem to load fine when deploying on ML1 devices. We'vev checked the AKDEBUG logs and it now points to the correct path.

The line with the local fix:

259: return index == -1 ? dataPath : dataPath.Remove(index, find.Length).Insert(index, "bin/");

Please sign-in or register to answer this question.

...