From 0096c8b910227ae09d52e8ea414e7c393ea0b196 Mon Sep 17 00:00:00 2001 From: Kris Pockell Date: Thu, 11 Apr 2019 18:54:31 -0700 Subject: [PATCH 1/5] change MediaRecorder format to AAC --- .../audiorecorder2/audiorecorder2/AudioRecorder2Plugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/main/java/audiorecorder2/audiorecorder2/AudioRecorder2Plugin.java b/android/src/main/java/audiorecorder2/audiorecorder2/AudioRecorder2Plugin.java index 40eafaa..5a02c16 100644 --- a/android/src/main/java/audiorecorder2/audiorecorder2/AudioRecorder2Plugin.java +++ b/android/src/main/java/audiorecorder2/audiorecorder2/AudioRecorder2Plugin.java @@ -96,7 +96,7 @@ private void startRecording() { mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC); mRecorder.setOutputFormat(getOutputFormatFromString(mExtension)); mRecorder.setOutputFile(mFilePath); - mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB); + mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC); try { mRecorder.prepare(); From 90addca0adc676e8058cbce9b0e2e6a1c3bcdd50 Mon Sep 17 00:00:00 2001 From: Kris Pockell Date: Tue, 30 Apr 2019 16:38:04 -0700 Subject: [PATCH 2/5] Updated path provider for compatibility --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index aaff716..f0986c8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -11,7 +11,7 @@ dependencies: path: ^1.5.1 flutter: sdk: flutter - path_provider: ^0.4.1 + path_provider: ^0.5.0+1 file: ^5.0.4 # For information on the generic Dart part of this file, see the From 52da0cdaa275c0d59b4463a41f64146b67c05240 Mon Sep 17 00:00:00 2001 From: zakaryus Date: Mon, 5 Oct 2020 17:15:34 -0700 Subject: [PATCH 3/5] Update pubspec.yaml Update file package --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f0986c8..fa7fd5e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -12,7 +12,7 @@ dependencies: flutter: sdk: flutter path_provider: ^0.5.0+1 - file: ^5.0.4 + file: ^6.0.0-nullsafety.2 # For information on the generic Dart part of this file, see the # following page: https://www.dartlang.org/tools/pub/pubspec From 5e1cbf0b5b8d3327e5f112151c0f1f465fba937e Mon Sep 17 00:00:00 2001 From: Kris Pockell Date: Mon, 5 Oct 2020 18:36:01 -0700 Subject: [PATCH 4/5] Update pubspec.yaml --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index fa7fd5e..b46f9e5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -11,7 +11,7 @@ dependencies: path: ^1.5.1 flutter: sdk: flutter - path_provider: ^0.5.0+1 + path_provider: ^1.5.1 file: ^6.0.0-nullsafety.2 # For information on the generic Dart part of this file, see the From bacc1342ba925437b4fdf406ff6f17291cf1358f Mon Sep 17 00:00:00 2001 From: Kris Pockell Date: Wed, 4 Aug 2021 19:57:15 -0700 Subject: [PATCH 5/5] Update pubspec.yaml --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index b46f9e5..0571513 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -11,7 +11,7 @@ dependencies: path: ^1.5.1 flutter: sdk: flutter - path_provider: ^1.5.1 + path_provider: ^2.0.0 file: ^6.0.0-nullsafety.2 # For information on the generic Dart part of this file, see the