react-native-wakeword 1.1.40 → 1.1.41
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.
|
@@ -7,7 +7,7 @@ import com.facebook.react.uimanager.ViewManager;
|
|
|
7
7
|
|
|
8
8
|
// Your two existing modules:
|
|
9
9
|
import com.davoice.keywordspotting.KeyWordRNBridge;
|
|
10
|
-
import com.davoice.speakeridrn.SpeakerIdRNBridge;
|
|
10
|
+
//import com.davoice.speakeridrn.SpeakerIdRNBridge;
|
|
11
11
|
|
|
12
12
|
import java.util.Arrays;
|
|
13
13
|
import java.util.Collections;
|
|
@@ -18,7 +18,7 @@ public class DaVoiceUnifiedPackage implements ReactPackage {
|
|
|
18
18
|
public List<NativeModule> createNativeModules(ReactApplicationContext rc) {
|
|
19
19
|
return Arrays.asList(
|
|
20
20
|
new KeyWordRNBridge(rc),
|
|
21
|
-
new SpeakerIdRNBridge(rc)
|
|
21
|
+
// new SpeakerIdRNBridge(rc)
|
|
22
22
|
);
|
|
23
23
|
}
|
|
24
24
|
|