Skip to content

Commit 74cf73e

Browse files
authored
[flutter_tts] Fix bugs for Tizen 10.0 support (#878)
1 parent 48db60b commit 74cf73e

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

packages/flutter_tts/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## NEXT
1+
## 1.5.1
22

33
* Update code format.
4+
* Fix bugs for Tizen 10.0 support
45

56
## 1.5.0
67

packages/flutter_tts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This package is not an _endorsed_ implementation of `flutter_tts`. Therefore, yo
1111
```yaml
1212
dependencies:
1313
flutter_tts: ^4.2.0
14-
flutter_tts_tizen: ^1.5.0
14+
flutter_tts_tizen: ^1.5.1
1515
```
1616
1717
Then you can import `flutter_tts` in your Dart code:

packages/flutter_tts/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flutter_tts_tizen
22
description: The Tizen implementation of flutter_tts plugin.
33
homepage: https://github.com/flutter-tizen/plugins
44
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/flutter_tts
5-
version: 1.5.0
5+
version: 1.5.1
66

77
environment:
88
sdk: ">=3.1.0 <4.0.0"

packages/flutter_tts/tizen/src/text_to_speech.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
#include <sound_manager.h>
88

9+
#include <algorithm>
10+
911
#include "log.h"
1012

1113
namespace {

0 commit comments

Comments
 (0)