From 670bf874946638029beb55d1f5042e322af534dc Mon Sep 17 00:00:00 2001 From: Mark McLemore Date: Thu, 11 Feb 2016 17:20:52 -0800 Subject: [PATCH] Update working with audio sample to no longer use deprecated method --- .../Example_WorkingWithAudio/LowLevelPlayAudio.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Example_WorkingWithAudio/Example_WorkingWithAudio/LowLevelPlayAudio.cs b/Example_WorkingWithAudio/Example_WorkingWithAudio/LowLevelPlayAudio.cs index 22caf5b24..92bf69f40 100755 --- a/Example_WorkingWithAudio/Example_WorkingWithAudio/LowLevelPlayAudio.cs +++ b/Example_WorkingWithAudio/Example_WorkingWithAudio/LowLevelPlayAudio.cs @@ -44,7 +44,7 @@ protected async Task PlayAudioTrackAsync () // Frequency 11025, // Mono or stereo - ChannelConfiguration.Mono, + ChannelOut.Mono, // Audio encoding Android.Media.Encoding.Pcm16bit, // Length of the audio clip. @@ -71,4 +71,4 @@ public void Stop () } } } -} \ No newline at end of file +}