├── .circleci └── config.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierrc ├── .releaserc ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ ├── main │ ├── AndroidManifest.xml │ ├── VoiceSpec.kt │ └── java │ │ └── com │ │ └── wenkesj │ │ └── voice │ │ ├── Voice.kt │ │ ├── VoiceModule.kt │ │ └── VoicePackage.kt │ ├── newarch │ └── VoiceSpec.kt │ └── oldarch │ └── VoiceSpec.kt ├── app.plugin.js ├── eslint.config.js ├── example ├── .bundle │ └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── README.md ├── __tests__ │ └── App.test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── 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.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ └── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── src │ ├── VoiceTest.tsx │ ├── VoiceTestFuncComp.tsx │ └── button.png ├── tsconfig.json └── yarn.lock ├── ios ├── Voice.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ ├── olumayowadaniel.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── rudie_shahinian.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── Voice │ ├── Voice.h │ └── Voice.mm ├── package.json ├── plugin ├── src │ └── withVoice.ts ├── tsconfig.json └── tsconfig.tsbuildinfo ├── react-native-voice.podspec ├── src ├── NativeVoiceAndroid.ts ├── NativeVoiceIOS.ts ├── VoiceModuleTypes.ts └── index.ts ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | VoiceTest 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/fermium -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/.releaserc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/VoiceSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/android/src/main/VoiceSpec.kt -------------------------------------------------------------------------------- /android/src/main/java/com/wenkesj/voice/Voice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/android/src/main/java/com/wenkesj/voice/Voice.kt -------------------------------------------------------------------------------- /android/src/main/java/com/wenkesj/voice/VoiceModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/android/src/main/java/com/wenkesj/voice/VoiceModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/wenkesj/voice/VoicePackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/android/src/main/java/com/wenkesj/voice/VoicePackage.kt -------------------------------------------------------------------------------- /android/src/newarch/VoiceSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/android/src/newarch/VoiceSpec.kt -------------------------------------------------------------------------------- /android/src/oldarch/VoiceSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/android/src/oldarch/VoiceSpec.kt -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./plugin/build/withVoice'); 2 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: '@react-native-community', 3 | }; 4 | -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/.prettierrc.js -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/README.md -------------------------------------------------------------------------------- /example/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/__tests__/App.test.tsx -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/java/com/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/java/com/example/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/example/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/example/main.m -------------------------------------------------------------------------------- /example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/exampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/ios/exampleTests/exampleTests.m -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/VoiceTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/src/VoiceTest.tsx -------------------------------------------------------------------------------- /example/src/VoiceTestFuncComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/src/VoiceTestFuncComp.tsx -------------------------------------------------------------------------------- /example/src/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/src/button.png -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /ios/Voice.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/ios/Voice.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Voice.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/ios/Voice.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Voice.xcodeproj/project.xcworkspace/xcuserdata/olumayowadaniel.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/ios/Voice.xcodeproj/project.xcworkspace/xcuserdata/olumayowadaniel.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/Voice.xcodeproj/project.xcworkspace/xcuserdata/rudie_shahinian.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/ios/Voice.xcodeproj/project.xcworkspace/xcuserdata/rudie_shahinian.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/Voice/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/ios/Voice/Voice.h -------------------------------------------------------------------------------- /ios/Voice/Voice.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/ios/Voice/Voice.mm -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/package.json -------------------------------------------------------------------------------- /plugin/src/withVoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/plugin/src/withVoice.ts -------------------------------------------------------------------------------- /plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/plugin/tsconfig.json -------------------------------------------------------------------------------- /plugin/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- 1 | {"root":["./src/withvoice.ts"],"version":"5.6.3"} -------------------------------------------------------------------------------- /react-native-voice.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/react-native-voice.podspec -------------------------------------------------------------------------------- /src/NativeVoiceAndroid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/src/NativeVoiceAndroid.ts -------------------------------------------------------------------------------- /src/NativeVoiceIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/src/NativeVoiceIOS.ts -------------------------------------------------------------------------------- /src/VoiceModuleTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/src/VoiceModuleTypes.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-voice/voice/HEAD/yarn.lock --------------------------------------------------------------------------------