diff --git a/CHANGELOG.md b/CHANGELOG.md index 46f83794..3b1153df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,11 @@ * hasConfidenceRating on SpeechRecognitionResult indicates if confidence was provided from the device * new SpeechRecognitionWords class gives details on per transcription words and confidence +### Fix + + * speechRecognizer availabilityDidChange was crashing if invoked due to an invalid parameter type + * Added iOS platform 10 to example Podfile to resolve compilation warnings + ## 0.7.2 ### Breaking diff --git a/example/lib/main.dart b/example/lib/main.dart index 00bf69ed..a6038bdd 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -237,7 +237,7 @@ class _MyAppState extends State { onResult: resultListener, listenFor: Duration(seconds: 10), localeId: _currentLocaleId, - onSoundLevelChange: soundLevelListener ); + onSoundLevelChange: soundLevelListener); setState(() {}); }