0.3.0
Pre-release
Pre-release
Enhancements
- Changed the name of the
AudioDeviceSelector
class toAudioSwitch
. - Added the MODIFY_AUDIO_SETTINGS to the library manifest so it can be automatically consumed by applications.
- Added
AudioSwitch.VERSION
constant so developers can access the version of AudioSwitch at runtime. - Added
AudioSwitch.loggingEnabled
property so developers can configure AudioSwitch logging behavior at runtime. By default, AudioSwitch logging is disabled. Reference the following snippet to enable AudioSwitch logging:
val audioSwitch = AudioSwitch(context)
audioSwitch.loggingEnabled = true
audioSwitch.start { _, _ -> }