Confused about how to use AudioDeviceSelectorComponent

Hi,
I want to add some audio settings panel to my audio application. So I studied the AudioSettingsDemo.
In this demo a standard Component is used that creates the AudioDeviceManager and AudioDeviceSelectorComponent.
But my app (and many demo apps) use the AudioAppComponent, which I think already creates an audio manager, right?

But then how to use this AudioDeviceSelectorComponent, which seems to need this manager? Can I get a reference to the audio manager and use that when creating the AudioDeviceSelectorComponent?

The constructor of the AudioDeviceSelectionComponent takes a reference to the AudioDeviceManager, so that should not be an issue. It never creates it’s own AudioDeviceManager, that wouldn’t make sense.

And the AudioAppComponent can take a reference to an existing AudioDeviceManager, in which case it won’t create a manager.
So that situation is also covered.