I’m attempting to add fmod to an OpenGLES 2 Application that is included with Visual Studio 2015. I have added fmodL_X86.lib to my Additional Dependencies, and fmodL_X86.dll is marked as content. I updated Package.appxmanifest’s Capabilities to include Internet (Client), Internet (Client & Server), Microphone, and Private Networks (Client and Server).
To simplify testing, I’m working in debug x86 (although I get the same problems if I link against the arm/x64 libs+dlls and attempt to run those) and only added a couple lines of code on Initialize:
FMOD::System *system;
FMOD_RESULT result = FMOD::System_Create( &system );
Everything seems to statically link just fine, but when launching the app, I get the following error:
Unable to activate Windows Store app ‘84eb1360-ccf0-475a-bd25-a953e20e6ff6_40qvqfczahf76!App’. The FModTest.WindowsUniversal.Application.exe process started, but the activation request failed with error ‘The app didn’t start’.
I’m attempting to duplicate everything I see in the UWP examples (as they run just fine).
Did I miss any steps required to setup fmod in UWP?
Thanks!