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.

0 votes
It gives me a Linker Error error LNK2019: unresolved external symbol "class UClass * __cdecl Z_Construct_UClass_UAkAudioEvent_NoRegister(void)"
in General Discussion by Karanveer T. (160 points)

1 Answer

+1 vote
Apparently my build.cs file was missing this code :

        if (UEBuildConfiguration.bCompileAudiokinetic == true)
        {
            PublicDependencyModuleNames.Add("AkAudio");
        }
by Karanveer T. (160 points)
...