diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index 3db53b6e1f..b52b2e698b 100644 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -1,6 +1,6 @@ { final _audioRecorder = AudioRecorder(); final List amplitudeTimeline = []; - static const int bitRate = 16000; + static const int bitRate = + 64000; // Lower makes the audio messages unplayable on iOS for some reason Future startRecording() async { try { @@ -46,6 +48,7 @@ class RecordingDialogState extends State { final path = _recordedPath = '${tempDir.path}/recording${DateTime.now().microsecondsSinceEpoch}.$fileExtension'; + Logs().v('Store audio file at', path); final result = await _audioRecorder.hasPermission(); if (result != true) { setState(() => error = true);