├── .buckconfig ├── .bundle └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .ruby-version ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── LICENSE ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── robo │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── index.android.bundle │ │ ├── java │ │ └── com │ │ │ └── justpatrick │ │ │ └── gabby │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ ├── SplashActivity.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── Android.mk │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable │ │ ├── background_splash.xml │ │ ├── ic_launcher.png │ │ └── rn_edit_text_material.xml │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash.png │ │ ├── mipmap │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash.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 ├── assets ├── adaptive-icon.png ├── afternoon-icon.png ├── favicon.png ├── galaxy-icon.png ├── icon.png ├── mic-icon.png ├── morning-icon.png ├── night-icon.png ├── splash.png ├── sunset-icon.png └── visualizer.mp4 ├── babel.config.js ├── button.png ├── components ├── ChatBubbles.tsx ├── Chats.tsx ├── Greeting.tsx ├── Modal.tsx ├── PromptTutorialCard.tsx ├── SpeakButton.tsx ├── TabSwitcher.tsx ├── Tabs.tsx └── Visualizer.tsx ├── context └── globalContext.ts ├── engine ├── Handlers.ts ├── engine.ts ├── functions.ts └── utils.ts ├── index.js ├── metro.config.js ├── package.json ├── plugins └── RNDirectSendSms │ ├── android │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── senddirectsms │ │ │ ├── RNSendDirectSmsModule.java │ │ │ └── RNSendDirectSmsPackage.java │ │ └── res │ │ └── xml │ │ └── file_paths.xml │ ├── index.ts │ └── package.json ├── stores └── staticStore.ts ├── tsconfig.json ├── types.ts └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/.buckconfig -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/.bundle/config -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/robo/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/debug/java/com/robo/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/java/com/justpatrick/gabby/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/java/com/justpatrick/gabby/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/justpatrick/gabby/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/java/com/justpatrick/gabby/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/justpatrick/gabby/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/java/com/justpatrick/gabby/SplashActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/justpatrick/gabby/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/java/com/justpatrick/gabby/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/justpatrick/gabby/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/java/com/justpatrick/gabby/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/justpatrick/gabby/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/java/com/justpatrick/gabby/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/drawable/background_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/drawable/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/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/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/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/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/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/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/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/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/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/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/mipmap/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/afternoon-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/afternoon-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/galaxy-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/galaxy-icon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/mic-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/mic-icon.png -------------------------------------------------------------------------------- /assets/morning-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/morning-icon.png -------------------------------------------------------------------------------- /assets/night-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/night-icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/sunset-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/sunset-icon.png -------------------------------------------------------------------------------- /assets/visualizer.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/assets/visualizer.mp4 -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/babel.config.js -------------------------------------------------------------------------------- /button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/button.png -------------------------------------------------------------------------------- /components/ChatBubbles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/components/ChatBubbles.tsx -------------------------------------------------------------------------------- /components/Chats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/components/Chats.tsx -------------------------------------------------------------------------------- /components/Greeting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/components/Greeting.tsx -------------------------------------------------------------------------------- /components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/components/Modal.tsx -------------------------------------------------------------------------------- /components/PromptTutorialCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/components/PromptTutorialCard.tsx -------------------------------------------------------------------------------- /components/SpeakButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/components/SpeakButton.tsx -------------------------------------------------------------------------------- /components/TabSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/components/TabSwitcher.tsx -------------------------------------------------------------------------------- /components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/components/Tabs.tsx -------------------------------------------------------------------------------- /components/Visualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/components/Visualizer.tsx -------------------------------------------------------------------------------- /context/globalContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/context/globalContext.ts -------------------------------------------------------------------------------- /engine/Handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/engine/Handlers.ts -------------------------------------------------------------------------------- /engine/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/engine/engine.ts -------------------------------------------------------------------------------- /engine/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/engine/functions.ts -------------------------------------------------------------------------------- /engine/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/engine/utils.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/index.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/package.json -------------------------------------------------------------------------------- /plugins/RNDirectSendSms/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/plugins/RNDirectSendSms/android/build.gradle -------------------------------------------------------------------------------- /plugins/RNDirectSendSms/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/plugins/RNDirectSendSms/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /plugins/RNDirectSendSms/android/src/main/java/com/senddirectsms/RNSendDirectSmsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/plugins/RNDirectSendSms/android/src/main/java/com/senddirectsms/RNSendDirectSmsModule.java -------------------------------------------------------------------------------- /plugins/RNDirectSendSms/android/src/main/java/com/senddirectsms/RNSendDirectSmsPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/plugins/RNDirectSendSms/android/src/main/java/com/senddirectsms/RNSendDirectSmsPackage.java -------------------------------------------------------------------------------- /plugins/RNDirectSendSms/android/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/plugins/RNDirectSendSms/android/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /plugins/RNDirectSendSms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/plugins/RNDirectSendSms/index.ts -------------------------------------------------------------------------------- /plugins/RNDirectSendSms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/plugins/RNDirectSendSms/package.json -------------------------------------------------------------------------------- /stores/staticStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/stores/staticStore.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/types.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-web/Gabby/HEAD/yarn.lock --------------------------------------------------------------------------------