W/AudioTrack(20935): Use of stream types is deprecated for operations other than volume control
W/AudioTrack(20935): See the documentation of AudioTrack() for what to use instead with android.media.AudioAttributes to qualify your playback use case
Thank you for sharing the version number and warnings!
That warning isn’t coming from FMOD itself. It’s just Android letting you know that something in your app is still calling the old new AudioTrack(...) constructor instead of the newer AudioAttributes API.
It’s harmless, won’t break playback, and can safely be ignored.