├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── speechrecognistion │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── speechrecognistion │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── demo.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── speechRecognistion.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── speechRecognistion.xcscheme ├── speechRecognistion.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── speechRecognistion │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── speechRecognistionTests │ ├── Info.plist │ └── speechRecognistionTests.m ├── metro.config.js └── package.json /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/App.js -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/speechrecognistion/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/debug/java/com/speechrecognistion/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/speechrecognistion/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/java/com/speechrecognistion/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/speechrecognistion/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/java/com/speechrecognistion/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/babel.config.js -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/demo.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/speechRecognistion.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/speechRecognistion.xcodeproj/xcshareddata/xcschemes/speechRecognistion.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion.xcodeproj/xcshareddata/xcschemes/speechRecognistion.xcscheme -------------------------------------------------------------------------------- /ios/speechRecognistion.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/speechRecognistion.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/speechRecognistion/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion/AppDelegate.h -------------------------------------------------------------------------------- /ios/speechRecognistion/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion/AppDelegate.m -------------------------------------------------------------------------------- /ios/speechRecognistion/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/speechRecognistion/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/speechRecognistion/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion/Info.plist -------------------------------------------------------------------------------- /ios/speechRecognistion/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/speechRecognistion/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistion/main.m -------------------------------------------------------------------------------- /ios/speechRecognistionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistionTests/Info.plist -------------------------------------------------------------------------------- /ios/speechRecognistionTests/speechRecognistionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/ios/speechRecognistionTests/speechRecognistionTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/speechRecognition/HEAD/package.json --------------------------------------------------------------------------------