├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── APK └── Voice translator MVP.apk ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── speechtranslator │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── speechtranslator │ │ │ ├── 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 ├── index.js ├── ios ├── Podfile ├── SpeechTranslator-tvOS │ └── Info.plist ├── SpeechTranslator-tvOSTests │ └── Info.plist ├── SpeechTranslator.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SpeechTranslator-tvOS.xcscheme │ │ └── SpeechTranslator.xcscheme ├── SpeechTranslator │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── SpeechTranslatorTests │ ├── Info.plist │ └── SpeechTranslatorTests.m ├── metro.config.js ├── package.json ├── screenShots ├── screen1.jpg ├── screen2.jpg ├── screen3.jpg └── screen4.jpg └── src ├── AboutScreen └── AboutScreen.js ├── ArabicToEnglish └── ArabicToEnglish.js ├── EnglishToArabic └── EnglishToArabic.js ├── Route.js └── img ├── dz.png ├── ilies_ouldmenouer.jpg └── us.png /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /APK/Voice translator MVP.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/APK/Voice translator MVP.apk -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/speechtranslator/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/src/debug/java/com/speechtranslator/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/speechtranslator/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/src/main/java/com/speechtranslator/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/speechtranslator/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/src/main/java/com/speechtranslator/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/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/ilies-space/voiceTranslator-reactNative/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/ilies-space/voiceTranslator-reactNative/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/ilies-space/voiceTranslator-reactNative/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/ilies-space/voiceTranslator-reactNative/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/ilies-space/voiceTranslator-reactNative/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/ilies-space/voiceTranslator-reactNative/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/ilies-space/voiceTranslator-reactNative/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/ilies-space/voiceTranslator-reactNative/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/ilies-space/voiceTranslator-reactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/SpeechTranslator-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/SpeechTranslator-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/SpeechTranslator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/SpeechTranslator.xcodeproj/xcshareddata/xcschemes/SpeechTranslator-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator.xcodeproj/xcshareddata/xcschemes/SpeechTranslator-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/SpeechTranslator.xcodeproj/xcshareddata/xcschemes/SpeechTranslator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator.xcodeproj/xcshareddata/xcschemes/SpeechTranslator.xcscheme -------------------------------------------------------------------------------- /ios/SpeechTranslator/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator/AppDelegate.h -------------------------------------------------------------------------------- /ios/SpeechTranslator/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator/AppDelegate.m -------------------------------------------------------------------------------- /ios/SpeechTranslator/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/SpeechTranslator/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/SpeechTranslator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator/Info.plist -------------------------------------------------------------------------------- /ios/SpeechTranslator/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/SpeechTranslator/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslator/main.m -------------------------------------------------------------------------------- /ios/SpeechTranslatorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslatorTests/Info.plist -------------------------------------------------------------------------------- /ios/SpeechTranslatorTests/SpeechTranslatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/ios/SpeechTranslatorTests/SpeechTranslatorTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/package.json -------------------------------------------------------------------------------- /screenShots/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/screenShots/screen1.jpg -------------------------------------------------------------------------------- /screenShots/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/screenShots/screen2.jpg -------------------------------------------------------------------------------- /screenShots/screen3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/screenShots/screen3.jpg -------------------------------------------------------------------------------- /screenShots/screen4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/screenShots/screen4.jpg -------------------------------------------------------------------------------- /src/AboutScreen/AboutScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/src/AboutScreen/AboutScreen.js -------------------------------------------------------------------------------- /src/ArabicToEnglish/ArabicToEnglish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/src/ArabicToEnglish/ArabicToEnglish.js -------------------------------------------------------------------------------- /src/EnglishToArabic/EnglishToArabic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/src/EnglishToArabic/EnglishToArabic.js -------------------------------------------------------------------------------- /src/Route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/src/Route.js -------------------------------------------------------------------------------- /src/img/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/src/img/dz.png -------------------------------------------------------------------------------- /src/img/ilies_ouldmenouer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/src/img/ilies_ouldmenouer.jpg -------------------------------------------------------------------------------- /src/img/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilies-space/voiceTranslator-reactNative/HEAD/src/img/us.png --------------------------------------------------------------------------------