react-native-davoice 1.0.20 → 1.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@ require 'json'
2
2
 
3
3
  Pod::Spec.new do |s|
4
4
  s.name = "TTSRNBridge"
5
- s.version = "1.0.222" # Update to your package version
5
+ s.version = "1.0.223" # Update to your package version
6
6
  s.summary = "TTS for React Native."
7
7
  s.description = <<-DESC
8
8
  A React Native module for tts .
@@ -1 +1 @@
1
- 9ddd84b32283b50d1143561e1cb2748e tts-1.0.0.aar
1
+ ec817f780f8df84b0b50a60e43c46cec tts-1.0.0.aar
@@ -1 +1 @@
1
- 3be986a0ca26f4d5cda2c5e9241931ce897d61d2 tts-1.0.0.aar
1
+ 14d2fe78142403bb3520cff75e6667354adb4191 tts-1.0.0.aar
@@ -270,8 +270,8 @@ RCT_EXPORT_MODULE(SpeechBridge)
270
270
  - (void)waitForSTTEngineHotWithTimeoutMs:(NSNumber *)timeoutMs
271
271
  completion:(void (^)(BOOL ok))completion
272
272
  {
273
- NSNumber *t = timeoutMs ?: @(2500);
274
- if (t.doubleValue <= 0) t = @(2500);
273
+ NSNumber *t = timeoutMs ?: @(7200000);
274
+ if (t.doubleValue <= 0) t = @(7200000);
275
275
 
276
276
  CFTimeInterval deadline = CACurrentMediaTime() + MAX(0.1, t.doubleValue / 1000.0);
277
277
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-davoice",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "tts library for React Native",
5
5
  "main": "tts/index.js",
6
6
  "types": "tts/index.d.ts",