Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

Why is the Wwise iOS Unity Integration so big?

0 votes
Some user find the iOS libs ( libAKSoundEngine.a ) is a lot bigger than they would expect when compared to other platforms.
asked Sep 12, 2014 in General Discussion by Guillaume R. (Audiokinetic) (5,670 points)

1 Answer

0 votes

The size of the Wwise Unity Integration packages vary depending on the type of library (Debug, Profile or Release) and the target platform.

The Debug versions are the biggest because they include all debugging symbols, these are useful when investigating application crashes during development. The Profile versions contains the code used for the communication between the Wwise sound engine integrated in the application and the Wwise Authoring Tool's Advanced Profiler; useful when investigating audio issues in a running game. The Release versions are the smallest as they don't include debugging symbols or profiling functionality, these are used in the final version of the game.

When creating a Unity project targeting  iOS; Unity will create an XCode project that will link with Wwise libraries. The libraries contain all debug symbols *even* in Release. Also, they are source libraries that haven't gone through a linker yet; some optimization can only be done at link time. You need to specify the proper stripping option for the linker to reduce the size. Please refer to Unity documentation for more information.

answered Sep 12, 2014 by Guillaume R. (Audiokinetic) (5,670 points)
...