├── .eslintrc.js ├── .gitignore ├── .npmignore ├── README.md ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── expo │ └── modules │ └── stt │ ├── ExpoSttModule.kt │ └── VoiceRecognizerContract.kt ├── app.plugin.js ├── demo.png ├── example ├── .gitignore ├── App.tsx ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── expo │ │ │ │ └── modules │ │ │ │ └── stt │ │ │ │ └── example │ │ │ │ └── ReactNativeFlipper.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── expo │ │ │ │ │ └── modules │ │ │ │ │ └── stt │ │ │ │ │ └── example │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── splashscreen_image.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── splashscreen_image.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── splashscreen_image.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── splashscreen_image.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── splashscreen_image.png │ │ │ │ ├── drawable │ │ │ │ ├── rn_edit_text_material.xml │ │ │ │ └── splashscreen.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── colors.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── release │ │ │ └── java │ │ │ └── expo │ │ │ └── modules │ │ │ └── stt │ │ │ └── example │ │ │ └── ReactNativeFlipper.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── index.js ├── ios │ ├── .gitignore │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── Podfile.properties.json │ ├── exposttexample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── exposttexample.xcscheme │ ├── exposttexample.xcworkspace │ │ └── contents.xcworkspacedata │ └── exposttexample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── App-Icon-20x20@1x.png │ │ │ ├── App-Icon-20x20@2x.png │ │ │ ├── App-Icon-20x20@3x.png │ │ │ ├── App-Icon-29x29@1x.png │ │ │ ├── App-Icon-29x29@2x.png │ │ │ ├── App-Icon-29x29@3x.png │ │ │ ├── App-Icon-40x40@1x.png │ │ │ ├── App-Icon-40x40@2x.png │ │ │ ├── App-Icon-40x40@3x.png │ │ │ ├── App-Icon-60x60@2x.png │ │ │ ├── App-Icon-60x60@3x.png │ │ │ ├── App-Icon-76x76@1x.png │ │ │ ├── App-Icon-76x76@2x.png │ │ │ ├── App-Icon-83.5x83.5@2x.png │ │ │ ├── Contents.json │ │ │ └── ItunesArtwork@2x.png │ │ ├── Contents.json │ │ ├── SplashScreen.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ └── SplashScreenBackground.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ ├── Info.plist │ │ ├── SplashScreen.storyboard │ │ ├── Supporting │ │ └── Expo.plist │ │ ├── exposttexample.entitlements │ │ ├── main.m │ │ └── noop-file.swift ├── metro.config.js ├── package-lock.json ├── package.json ├── styles.ts ├── tsconfig.json └── webpack.config.js ├── expo-module.config.json ├── ios ├── ExpoStt.podspec ├── ExpoSttModule.swift ├── MicrophoneRequester.swift ├── PermissionExceptions.swift ├── PermissionResponse.swift ├── ReactEvents.swift └── SpeechRecognitionRequester.swift ├── package.json ├── plugin ├── build │ ├── withSpeechRecognition.d.ts │ └── withSpeechRecognition.js ├── jest.config.js ├── src │ ├── __tests__ │ │ └── withSpeechRecognition-test.ts │ └── withSpeechRecognition.ts └── tsconfig.json ├── src ├── ExpoStt.types.ts ├── ExpoSttModule.ts └── index.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/expo/modules/stt/ExpoSttModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/android/src/main/java/expo/modules/stt/ExpoSttModule.kt -------------------------------------------------------------------------------- /android/src/main/java/expo/modules/stt/VoiceRecognizerContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/android/src/main/java/expo/modules/stt/VoiceRecognizerContract.kt -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./plugin/build/withSpeechRecognition"); 2 | -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/demo.png -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/expo/modules/stt/example/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/debug/java/expo/modules/stt/example/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/expo/modules/stt/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/java/expo/modules/stt/example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/expo/modules/stt/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/java/expo/modules/stt/example/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/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/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/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/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/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/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/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/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/release/java/expo/modules/stt/example/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/app/src/release/java/expo/modules/stt/example/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Podfile.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo.jsEngine": "hermes" 3 | } 4 | -------------------------------------------------------------------------------- /example/ios/exposttexample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/exposttexample.xcodeproj/xcshareddata/xcschemes/exposttexample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample.xcodeproj/xcshareddata/xcschemes/exposttexample.xcscheme -------------------------------------------------------------------------------- /example/ios/exposttexample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/exposttexample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/exposttexample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/App-Icon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/exposttexample/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /example/ios/exposttexample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Info.plist -------------------------------------------------------------------------------- /example/ios/exposttexample/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/SplashScreen.storyboard -------------------------------------------------------------------------------- /example/ios/exposttexample/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/Supporting/Expo.plist -------------------------------------------------------------------------------- /example/ios/exposttexample/exposttexample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/exposttexample.entitlements -------------------------------------------------------------------------------- /example/ios/exposttexample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/main.m -------------------------------------------------------------------------------- /example/ios/exposttexample/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/ios/exposttexample/noop-file.swift -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/package.json -------------------------------------------------------------------------------- /example/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/styles.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /expo-module.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/expo-module.config.json -------------------------------------------------------------------------------- /ios/ExpoStt.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/ios/ExpoStt.podspec -------------------------------------------------------------------------------- /ios/ExpoSttModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/ios/ExpoSttModule.swift -------------------------------------------------------------------------------- /ios/MicrophoneRequester.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/ios/MicrophoneRequester.swift -------------------------------------------------------------------------------- /ios/PermissionExceptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/ios/PermissionExceptions.swift -------------------------------------------------------------------------------- /ios/PermissionResponse.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/ReactEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/ios/ReactEvents.swift -------------------------------------------------------------------------------- /ios/SpeechRecognitionRequester.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/ios/SpeechRecognitionRequester.swift -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/package.json -------------------------------------------------------------------------------- /plugin/build/withSpeechRecognition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/plugin/build/withSpeechRecognition.d.ts -------------------------------------------------------------------------------- /plugin/build/withSpeechRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/plugin/build/withSpeechRecognition.js -------------------------------------------------------------------------------- /plugin/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/plugin/jest.config.js -------------------------------------------------------------------------------- /plugin/src/__tests__/withSpeechRecognition-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/plugin/src/__tests__/withSpeechRecognition-test.ts -------------------------------------------------------------------------------- /plugin/src/withSpeechRecognition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/plugin/src/withSpeechRecognition.ts -------------------------------------------------------------------------------- /plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/plugin/tsconfig.json -------------------------------------------------------------------------------- /src/ExpoStt.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/src/ExpoStt.types.ts -------------------------------------------------------------------------------- /src/ExpoSttModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/src/ExpoSttModule.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhtuank7c/expo-stt/HEAD/tsconfig.json --------------------------------------------------------------------------------