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.
- package/TTSRNBridge.podspec +1 -1
- package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar +0 -0
- package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar.md5 +1 -1
- package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar.sha1 +1 -1
- package/ios/SpeechBridge/SpeechBridge.m +2 -2
- package/package.json +1 -1
package/TTSRNBridge.podspec
CHANGED
|
@@ -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.
|
|
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 .
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ec817f780f8df84b0b50a60e43c46cec tts-1.0.0.aar
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
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 ?: @(
|
|
274
|
-
if (t.doubleValue <= 0) t = @(
|
|
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
|
|