├── .gitignore ├── .npmignore ├── README.md ├── android ├── .gitignore ├── .npmignore ├── app.iml ├── build.gradle ├── libs │ ├── Baidu-SpeechRecognitionUI-SDK-Android-1.6.2.jar │ ├── VoiceRecognition-1.6.2.jar │ ├── armeabi-v7a │ │ └── libBDVoiceRecognitionClient_MFE_V1.so │ ├── armeabi │ │ └── libBDVoiceRecognitionClient_MFE_V1.so │ ├── galaxy.jar │ ├── mips │ │ └── libBDVoiceRecognitionClient_MFE_V1.so │ └── x86 │ │ └── libBDVoiceRecognitionClient_MFE_V1.so ├── proguard-rules.pro ├── react-native-voise.iml └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── cn │ │ └── mandata │ │ └── react_native_voise │ │ ├── BaiduVoiseLibPackage.java │ │ └── voise │ │ ├── SpeechRecognitionListener.java │ │ ├── SpeechRecognizerManager.java │ │ ├── SpeechVoiceRecogListener.java │ │ ├── VoiseRecognitionManager.java │ │ └── onReceiveEvent.java │ └── res │ ├── drawable-hdpi │ ├── bdspeech_close_v2.png │ ├── bdspeech_help_deep.png │ ├── bdspeech_help_light.png │ ├── bdspeech_help_pressed_deep.png │ ├── bdspeech_help_pressed_light.png │ ├── bdspeech_mask_deep.png │ └── bdspeech_mask_light.png │ ├── drawable │ ├── bdspeech_btn_greendeep_normal.9.png │ ├── bdspeech_btn_greendeep_pressed.9.png │ ├── bdspeech_btn_greenlight_normal.9.png │ ├── bdspeech_btn_greenlight_pressed.9.png │ ├── bdspeech_btn_normal.9.png │ ├── bdspeech_btn_orangedeep_normal.9.png │ ├── bdspeech_btn_orangedeep_pressed.9.png │ ├── bdspeech_btn_orangelight_normal.9.png │ ├── bdspeech_btn_orangelight_pressed.9.png │ ├── bdspeech_btn_pressed.9.png │ ├── bdspeech_btn_recognizing.9.png │ ├── bdspeech_btn_recognizing_deep.9.png │ ├── bdspeech_btn_reddeep_normal.9.png │ ├── bdspeech_btn_reddeep_pressed.9.png │ ├── bdspeech_btn_redlight_normal.9.png │ ├── bdspeech_btn_redlight_pressed.9.png │ ├── bdspeech_digital_bg.9.png │ ├── bdspeech_digital_deep_bg.9.png │ ├── bdspeech_left_deep_normal.9.png │ ├── bdspeech_left_deep_pressed.9.png │ ├── bdspeech_left_normal.9.png │ ├── bdspeech_left_pressed.9.png │ ├── bdspeech_right_greendeep_normal.9.png │ ├── bdspeech_right_greendeep_pressed.9.png │ ├── bdspeech_right_greenlight_normal.9.png │ ├── bdspeech_right_greenlight_pressed.9.png │ ├── bdspeech_right_normal.9.png │ ├── bdspeech_right_orangedeep_normal.9.png │ ├── bdspeech_right_orangedeep_pressed.9.png │ ├── bdspeech_right_orangelight_normal.9.png │ ├── bdspeech_right_orangelight_pressed.9.png │ ├── bdspeech_right_pressed.9.png │ ├── bdspeech_right_reddeep_normal.9.png │ ├── bdspeech_right_reddeep_pressed.9.png │ ├── bdspeech_right_redlight_normal.9.png │ └── bdspeech_right_redlight_pressed.9.png │ ├── layout │ ├── bdspeech_digital_layout.xml │ └── bdspeech_suggestion_item.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── raw │ ├── bdspeech_recognition_cancel.mp3 │ ├── bdspeech_recognition_error.mp3 │ ├── bdspeech_recognition_start.mp3 │ ├── bdspeech_recognition_success.mp3 │ └── bdspeech_speech_end.mp3 │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── index.android.js ├── lib ├── BaiduVoise.js ├── Params.js └── SpeechRecognizer.js ├── package.json └── sample ├── Button.js ├── TitleBar.js ├── VoiseCustomUI.js ├── VoiseDialog.js ├── index.js └── voisedemo0.gif /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/.npmignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/app.iml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/libs/Baidu-SpeechRecognitionUI-SDK-Android-1.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/libs/Baidu-SpeechRecognitionUI-SDK-Android-1.6.2.jar -------------------------------------------------------------------------------- /android/libs/VoiceRecognition-1.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/libs/VoiceRecognition-1.6.2.jar -------------------------------------------------------------------------------- /android/libs/armeabi-v7a/libBDVoiceRecognitionClient_MFE_V1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/libs/armeabi-v7a/libBDVoiceRecognitionClient_MFE_V1.so -------------------------------------------------------------------------------- /android/libs/armeabi/libBDVoiceRecognitionClient_MFE_V1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/libs/armeabi/libBDVoiceRecognitionClient_MFE_V1.so -------------------------------------------------------------------------------- /android/libs/galaxy.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/libs/galaxy.jar -------------------------------------------------------------------------------- /android/libs/mips/libBDVoiceRecognitionClient_MFE_V1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/libs/mips/libBDVoiceRecognitionClient_MFE_V1.so -------------------------------------------------------------------------------- /android/libs/x86/libBDVoiceRecognitionClient_MFE_V1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/libs/x86/libBDVoiceRecognitionClient_MFE_V1.so -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/react-native-voise.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/react-native-voise.iml -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/cn/mandata/react_native_voise/BaiduVoiseLibPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/java/cn/mandata/react_native_voise/BaiduVoiseLibPackage.java -------------------------------------------------------------------------------- /android/src/main/java/cn/mandata/react_native_voise/voise/SpeechRecognitionListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/java/cn/mandata/react_native_voise/voise/SpeechRecognitionListener.java -------------------------------------------------------------------------------- /android/src/main/java/cn/mandata/react_native_voise/voise/SpeechRecognizerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/java/cn/mandata/react_native_voise/voise/SpeechRecognizerManager.java -------------------------------------------------------------------------------- /android/src/main/java/cn/mandata/react_native_voise/voise/SpeechVoiceRecogListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/java/cn/mandata/react_native_voise/voise/SpeechVoiceRecogListener.java -------------------------------------------------------------------------------- /android/src/main/java/cn/mandata/react_native_voise/voise/VoiseRecognitionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/java/cn/mandata/react_native_voise/voise/VoiseRecognitionManager.java -------------------------------------------------------------------------------- /android/src/main/java/cn/mandata/react_native_voise/voise/onReceiveEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/java/cn/mandata/react_native_voise/voise/onReceiveEvent.java -------------------------------------------------------------------------------- /android/src/main/res/drawable-hdpi/bdspeech_close_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable-hdpi/bdspeech_close_v2.png -------------------------------------------------------------------------------- /android/src/main/res/drawable-hdpi/bdspeech_help_deep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable-hdpi/bdspeech_help_deep.png -------------------------------------------------------------------------------- /android/src/main/res/drawable-hdpi/bdspeech_help_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable-hdpi/bdspeech_help_light.png -------------------------------------------------------------------------------- /android/src/main/res/drawable-hdpi/bdspeech_help_pressed_deep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable-hdpi/bdspeech_help_pressed_deep.png -------------------------------------------------------------------------------- /android/src/main/res/drawable-hdpi/bdspeech_help_pressed_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable-hdpi/bdspeech_help_pressed_light.png -------------------------------------------------------------------------------- /android/src/main/res/drawable-hdpi/bdspeech_mask_deep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable-hdpi/bdspeech_mask_deep.png -------------------------------------------------------------------------------- /android/src/main/res/drawable-hdpi/bdspeech_mask_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable-hdpi/bdspeech_mask_light.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_greendeep_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_greendeep_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_greendeep_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_greendeep_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_greenlight_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_greenlight_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_greenlight_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_greenlight_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_orangedeep_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_orangedeep_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_orangedeep_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_orangedeep_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_orangelight_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_orangelight_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_orangelight_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_orangelight_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_recognizing.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_recognizing.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_recognizing_deep.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_recognizing_deep.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_reddeep_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_reddeep_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_reddeep_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_reddeep_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_redlight_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_redlight_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_btn_redlight_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_btn_redlight_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_digital_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_digital_bg.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_digital_deep_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_digital_deep_bg.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_left_deep_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_left_deep_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_left_deep_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_left_deep_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_left_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_left_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_left_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_left_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_greendeep_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_greendeep_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_greendeep_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_greendeep_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_greenlight_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_greenlight_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_greenlight_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_greenlight_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_orangedeep_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_orangedeep_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_orangedeep_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_orangedeep_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_orangelight_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_orangelight_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_orangelight_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_orangelight_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_reddeep_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_reddeep_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_reddeep_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_reddeep_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_redlight_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_redlight_normal.9.png -------------------------------------------------------------------------------- /android/src/main/res/drawable/bdspeech_right_redlight_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/drawable/bdspeech_right_redlight_pressed.9.png -------------------------------------------------------------------------------- /android/src/main/res/layout/bdspeech_digital_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/layout/bdspeech_digital_layout.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/bdspeech_suggestion_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/layout/bdspeech_suggestion_item.xml -------------------------------------------------------------------------------- /android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/src/main/res/raw/bdspeech_recognition_cancel.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/raw/bdspeech_recognition_cancel.mp3 -------------------------------------------------------------------------------- /android/src/main/res/raw/bdspeech_recognition_error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/raw/bdspeech_recognition_error.mp3 -------------------------------------------------------------------------------- /android/src/main/res/raw/bdspeech_recognition_start.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/raw/bdspeech_recognition_start.mp3 -------------------------------------------------------------------------------- /android/src/main/res/raw/bdspeech_recognition_success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/raw/bdspeech_recognition_success.mp3 -------------------------------------------------------------------------------- /android/src/main/res/raw/bdspeech_speech_end.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/raw/bdspeech_speech_end.mp3 -------------------------------------------------------------------------------- /android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/index.android.js -------------------------------------------------------------------------------- /lib/BaiduVoise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/lib/BaiduVoise.js -------------------------------------------------------------------------------- /lib/Params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/lib/Params.js -------------------------------------------------------------------------------- /lib/SpeechRecognizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/lib/SpeechRecognizer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/package.json -------------------------------------------------------------------------------- /sample/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/sample/Button.js -------------------------------------------------------------------------------- /sample/TitleBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/sample/TitleBar.js -------------------------------------------------------------------------------- /sample/VoiseCustomUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/sample/VoiseCustomUI.js -------------------------------------------------------------------------------- /sample/VoiseDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/sample/VoiseDialog.js -------------------------------------------------------------------------------- /sample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/sample/index.js -------------------------------------------------------------------------------- /sample/voisedemo0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyin163/react-native-voise/HEAD/sample/voisedemo0.gif --------------------------------------------------------------------------------