├── .detoxrc.js ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ └── feature_request.yml ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── publish.yml │ └── stale.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg ├── pre-commit └── prepare-commit-msg ├── .nvmrc ├── .prettierrc.yaml ├── .release-it.js ├── .watchmanconfig ├── .yarnrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── .classpath ├── .npmignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── registration.cpp ├── resources │ ├── exoplayeradapter@2.18.1 │ │ ├── VideoCacheImpl.kt │ │ ├── VideoPlayerAdapterImpl.kt │ │ └── dependencies.gradle │ └── videoplayeradapter │ │ ├── AbstractVideoPlayerAdapter.kt │ │ ├── VideoCache.kt │ │ ├── VideoCacheImpl.kt │ │ ├── VideoPlayerAdapterImpl.kt │ │ └── dependencies.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ ├── AndroidManifestDeprecated.xml │ └── java │ │ └── com │ │ └── giphyreactnativesdk │ │ ├── .gitignore │ │ ├── RTNGiphyDialogModule.kt │ │ ├── RTNGiphyFrescoImageRequestHandler.kt │ │ ├── RTNGiphyGridView.kt │ │ ├── RTNGiphyGridViewManager.kt │ │ ├── RTNGiphyMediaView.kt │ │ ├── RTNGiphyMediaViewManager.kt │ │ ├── RTNGiphySdkInfo.kt │ │ ├── RTNGiphySdkModule.kt │ │ ├── RTNGiphySdkPackage.kt │ │ ├── RTNGiphyTheme.kt │ │ ├── RTNGiphyVideoManager.kt │ │ ├── RTNGiphyVideoView.kt │ │ ├── RTNGiphyVideoViewManager.kt │ │ ├── SharedVideoPlayer.kt │ │ ├── dto │ │ ├── RTNGiphyContentType.kt │ │ ├── RTNGiphyMedia.kt │ │ ├── RTNGiphyRating.kt │ │ ├── RTNGiphyRendition.kt │ │ └── RTNResizeMode.kt │ │ ├── events │ │ ├── OnGridContentUpdateEvent.kt │ │ ├── OnGridMediaSelectEvent.kt │ │ ├── OnGridScrollEvent.kt │ │ ├── OnPlayerErrorEvent.kt │ │ ├── OnPlayerMuteEvent.kt │ │ ├── OnPlayerPlaybackStateChangeEvent.kt │ │ └── OnPlayerUnmuteEvent.kt │ │ └── utils │ │ ├── CaseConverter.kt │ │ ├── JsonArguments.kt │ │ ├── JsonElementConverter.kt │ │ ├── VideoCache.kt │ │ └── VideoPlayer.kt │ ├── newarch │ ├── RTNGiphyDialogModuleSpec.kt │ ├── RTNGiphyGridViewManagerSpec.kt │ ├── RTNGiphyMediaViewManagerSpec.kt │ ├── RTNGiphySdkModuleSpec.kt │ ├── RTNGiphyVideoManagerSpec.kt │ └── RTNGiphyVideoViewManagerSpec.kt │ └── oldarch │ ├── RTNGiphyDialogModuleSpec.kt │ ├── RTNGiphyGridViewManagerSpec.kt │ ├── RTNGiphyMediaViewManagerSpec.kt │ ├── RTNGiphySdkModuleSpec.kt │ ├── RTNGiphyVideoManagerSpec.kt │ └── RTNGiphyVideoViewManagerSpec.kt ├── app.plugin.js ├── babel.config.js ├── docs ├── animated.md ├── api.md ├── assets │ ├── android-theme-scheme.pdf │ ├── example_app.gif │ ├── ios-theme-scheme.pdf │ ├── new-feature.gif │ ├── sdk-dynamic-text.png │ └── sdk_logo.gif ├── clips.md ├── expo-integration.md ├── getting-started.md ├── localization.md ├── migrating-to-giphy-react-native-sdk-2.md └── testing-jest.md ├── e2e ├── GiphyDialog.e2e.ts ├── GiphyDialogSettings.e2e.ts ├── GiphyGridView.e2e.ts ├── MainScreen.e2e.ts ├── __image_snapshots__ │ ├── giphy-dialog-settings-checkered-background-1.android.png │ ├── giphy-dialog-settings-checkered-background-2.android.png │ ├── giphy-dialog-settings-confirmation-screen-1.android.png │ ├── giphy-dialog-settings-confirmation-screen-1.ios.png │ ├── giphy-dialog-settings-confirmation-screen-2.android.png │ ├── giphy-dialog-settings-confirmation-screen-2.ios.png │ ├── giphy-dialog-settings-confirmation-screen-3.android.png │ ├── giphy-dialog-settings-confirmation-screen-3.ios.png │ ├── giphy-dialog-settings-confirmation-screen-4.android.png │ ├── giphy-dialog-settings-confirmation-screen-4.ios.png │ ├── giphy-dialog-settings-confirmation-screen-5.android.png │ ├── giphy-dialog-settings-confirmation-screen-5.ios.png │ ├── giphy-dialog-settings-custom-theme-1.android.png │ ├── giphy-dialog-settings-custom-theme-1.ios.png │ ├── giphy-dialog-settings-custom-theme-2.android.png │ ├── giphy-dialog-settings-custom-theme-2.ios.png │ ├── giphy-dialog-settings-dynamic-text-enabled-1.android.png │ ├── giphy-dialog-settings-dynamic-text-enabled-1.ios.png │ ├── giphy-dialog-settings-dynamic-text-enabled-2.android.png │ ├── giphy-dialog-settings-dynamic-text-enabled-2.ios.png │ ├── giphy-dialog-settings-dynamic-text-enabled-3.android.png │ ├── giphy-dialog-settings-dynamic-text-enabled-3.ios.png │ ├── giphy-dialog-settings-media-type-1.android.png │ ├── giphy-dialog-settings-media-type-1.ios.png │ ├── giphy-dialog-settings-media-type-2.android.png │ ├── giphy-dialog-settings-media-type-2.ios.png │ ├── giphy-dialog-settings-media-type-3.android.png │ ├── giphy-dialog-settings-media-type-3.ios.png │ ├── giphy-dialog-settings-selected-content-type-1.android.png │ ├── giphy-dialog-settings-selected-content-type-1.ios.png │ ├── giphy-dialog-settings-selected-content-type-2.android.png │ ├── giphy-dialog-settings-selected-content-type-2.ios.png │ ├── giphy-dialog-settings-selected-content-type-3.android.png │ ├── giphy-dialog-settings-selected-content-type-3.ios.png │ ├── giphy-dialog-settings-selected-content-type-4.android.png │ ├── giphy-dialog-settings-selected-content-type-4.ios.png │ ├── giphy-dialog-settings-selected-content-type-5.android.png │ ├── giphy-dialog-settings-selected-content-type-5.ios.png │ ├── giphy-dialog-settings-selected-content-type-6.android.png │ ├── giphy-dialog-settings-selected-content-type-6.ios.png │ ├── giphy-dialog-settings-theme-preset-1.android.png │ ├── giphy-dialog-settings-theme-preset-1.ios.png │ ├── giphy-dialog-settings-theme-preset-2.android.png │ ├── giphy-dialog-settings-theme-preset-2.ios.png │ ├── giphy-dialog-settings-theme-preset-3.android.png │ ├── giphy-dialog-settings-theme-preset-3.ios.png │ ├── giphy-dialog-should-be-displayed-a-message-if-no-gifs-are-found-1.android.png │ ├── giphy-dialog-should-be-displayed-a-message-if-no-gifs-are-found-1.ios.png │ ├── giphy-dialog-should-show-the-default-dialog-1.android.png │ ├── giphy-dialog-should-show-the-default-dialog-1.ios.png │ ├── giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-1.android.png │ ├── giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-1.ios.png │ ├── giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-2.android.png │ ├── giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-2.ios.png │ ├── giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-3.android.png │ ├── giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-3.ios.png │ ├── giphy-grid-view-should-select-a-gif-from-the-search-results-1.android.png │ ├── giphy-grid-view-should-select-a-gif-from-the-search-results-1.ios.png │ ├── giphy-grid-view-should-select-a-gif-from-the-search-results-2.android.png │ ├── giphy-grid-view-should-select-a-gif-from-the-search-results-2.ios.png │ ├── giphy-grid-view-should-select-a-gif-from-the-search-results-3.android.png │ ├── giphy-grid-view-should-select-a-gif-from-the-search-results-3.ios.png │ ├── main-screen-should-contain-2-visible-gifs-1.android.png │ └── main-screen-should-contain-2-visible-gifs-1.ios.png ├── config │ ├── jest.d.ts │ ├── runnerConfig.js │ ├── runnerSetup.ts │ └── setUpTests.ts └── utils │ ├── elementActions.ts │ ├── giphyDialog.ts │ ├── imageSnapshot.ts │ ├── index.ts │ ├── rootElement.ts │ ├── searchTerm.ts │ └── wait.ts ├── example ├── .bundle │ └── config ├── .eslintrc.json ├── .example.env ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── android │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── giphyreactnativesdk │ │ │ │ └── DetoxTest.java │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── giphyreactnativesdk │ │ │ │ └── ReactNativeFlipper.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── giphyreactnativesdk │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ └── 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 │ │ │ │ └── xml │ │ │ │ └── network_security_config.xml │ │ │ └── release │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── giphyreactnativesdk │ │ │ └── ReactNativeFlipper.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.tsx ├── ios │ ├── .xcode.env │ ├── .xcode.env.local │ ├── File.swift │ ├── GiphyReactNativeSdkExample-Bridging-Header.h │ ├── GiphyReactNativeSdkExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── GiphyReactNativeSdkExample.xcscheme │ ├── GiphyReactNativeSdkExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── GiphyReactNativeSdkExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Resources │ │ └── Settings.bundle │ │ ├── Acknowledgements.plist │ │ ├── Root.plist │ │ └── en.lproj │ │ └── Root.strings ├── metro.config.js ├── package.json ├── react-native.config.js ├── scripts │ ├── build.android.sh │ └── build.ios.sh ├── src │ ├── App.tsx │ ├── Dialog.tsx │ ├── MediaGridSample.tsx │ ├── MediaViewSample.tsx │ ├── Settings │ │ ├── Card.tsx │ │ ├── GiphyDialogSettings.tsx │ │ ├── InputCard.tsx │ │ ├── PickerSelectCard.tsx │ │ ├── SwitchCard.tsx │ │ └── index.ts │ ├── fixtures.ts │ ├── giphy.setup.android.ts │ ├── giphy.setup.ios.ts │ ├── giphy.setup.ts │ ├── react-native-config.d.ts │ └── theme │ │ └── customThemeSample.ts └── yarn.lock ├── giphy-react-native-sdk.podspec ├── ios ├── .npmignore ├── GiphyReactNativeSDK-Bridging-Header.h ├── GiphyReactNativeSDK.xcodeproj │ └── project.pbxproj ├── GiphyReactNativeSDK.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── RTNGiphyDialogModule.h ├── RTNGiphyDialogModule.mm ├── RTNGiphyDialogModuleImpl.swift ├── RTNGiphyGridView.h ├── RTNGiphyGridView.mm ├── RTNGiphyGridViewImpl.swift ├── RTNGiphyGridViewManager.mm ├── RTNGiphyMediaView.h ├── RTNGiphyMediaView.mm ├── RTNGiphyMediaViewImpl.swift ├── RTNGiphyMediaViewManager.mm ├── RTNGiphySDKModule.h ├── RTNGiphySDKModule.mm ├── RTNGiphySDKModuleImpl.swift ├── RTNGiphyTheme.swift ├── RTNGiphyVideoManager.h ├── RTNGiphyVideoManager.mm ├── RTNGiphyVideoManagerImpl.swift ├── RTNGiphyVideoView.h ├── RTNGiphyVideoView.mm ├── RTNGiphyVideoViewImpl.swift ├── RTNGiphyVideoViewManager.mm ├── SharedVideoPlayer.swift └── Utils │ ├── GPHMedia.swift │ ├── RTNGiphySDKInfo.swift │ ├── RTNGiphyTypeExtensions.swift │ └── ResizeMode.swift ├── package.json ├── scripts ├── avd.create.sh ├── avd.defaults.sh ├── avd.demo-mode.sh ├── avd.run.sh ├── bootstrap.js ├── github-latest-release.sh ├── licenses.check.js ├── licenses.generate.sh ├── pkg.get-tag.js ├── sdk.bump.android.sh ├── sdk.bump.ios.sh ├── sdk.conf.android.sh ├── sdk.conf.ios.sh ├── sdk.latest-version.android.sh ├── sdk.latest-version.ios.sh ├── sdk.version-by-hash.android.sh ├── sdk.version-by-hash.ios.sh ├── sim.create.sh ├── sim.defaults.sh └── sim.demo-mode.sh ├── src ├── GiphyContent.ts ├── GiphyDialog.ts ├── GiphyGridView.tsx ├── GiphyMediaView.tsx ├── GiphySDK.ts ├── GiphyVideoManager.ts ├── GiphyVideoView.tsx ├── __tests__ │ └── index.test.tsx ├── dto │ ├── giphyContentRequest.ts │ ├── giphyContentType.ts │ ├── giphyFileExtension.ts │ ├── giphyMedia.ts │ ├── giphyMediaType.ts │ ├── giphyRating.ts │ ├── giphyRendition.ts │ ├── giphyTheme.ts │ ├── giphyThemePreset.ts │ └── misc.ts ├── index.tsx ├── specs │ ├── GiphyGridViewNativeComponent.ts │ ├── GiphyMediaViewNativeComponent.ts │ ├── GiphyVideoViewNativeComponent.ts │ ├── NativeGiphyDialog.ts │ ├── NativeGiphySDK.ts │ └── NativeGiphyVideoManager.ts └── utils │ ├── deprecatedPropType.ts │ └── noop.ts ├── templates ├── changelog-commit.hbs ├── changelog-footer.hbs ├── changelog-header.hbs ├── changelog-native-sdk.hbs └── changelog.hbs ├── tsconfig.build.json ├── tsconfig.check.json ├── tsconfig.json └── yarn.lock /.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.detoxrc.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | Pods/ 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint --edit $1 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.husky/prepare-commit-msg -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.16.0 2 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.release-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.release-it.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/README.md -------------------------------------------------------------------------------- /android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/.classpath -------------------------------------------------------------------------------- /android/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/.npmignore -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/registration.cpp -------------------------------------------------------------------------------- /android/resources/exoplayeradapter@2.18.1/VideoCacheImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/resources/exoplayeradapter@2.18.1/VideoCacheImpl.kt -------------------------------------------------------------------------------- /android/resources/exoplayeradapter@2.18.1/VideoPlayerAdapterImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/resources/exoplayeradapter@2.18.1/VideoPlayerAdapterImpl.kt -------------------------------------------------------------------------------- /android/resources/exoplayeradapter@2.18.1/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/resources/exoplayeradapter@2.18.1/dependencies.gradle -------------------------------------------------------------------------------- /android/resources/videoplayeradapter/AbstractVideoPlayerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/resources/videoplayeradapter/AbstractVideoPlayerAdapter.kt -------------------------------------------------------------------------------- /android/resources/videoplayeradapter/VideoCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/resources/videoplayeradapter/VideoCache.kt -------------------------------------------------------------------------------- /android/resources/videoplayeradapter/VideoCacheImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/resources/videoplayeradapter/VideoCacheImpl.kt -------------------------------------------------------------------------------- /android/resources/videoplayeradapter/VideoPlayerAdapterImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/resources/videoplayeradapter/VideoPlayerAdapterImpl.kt -------------------------------------------------------------------------------- /android/resources/videoplayeradapter/dependencies.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestDeprecated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/AndroidManifestDeprecated.xml -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/.gitignore -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyDialogModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyDialogModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyFrescoImageRequestHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyFrescoImageRequestHandler.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyGridView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyGridView.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyGridViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyGridViewManager.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyMediaView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyMediaView.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyMediaViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyMediaViewManager.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphySdkInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphySdkInfo.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphySdkModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphySdkModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphySdkPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphySdkPackage.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyTheme.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyVideoManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyVideoManager.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyVideoView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyVideoView.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/RTNGiphyVideoViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/RTNGiphyVideoViewManager.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/SharedVideoPlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/SharedVideoPlayer.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/dto/RTNGiphyContentType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/dto/RTNGiphyContentType.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/dto/RTNGiphyMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/dto/RTNGiphyMedia.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/dto/RTNGiphyRating.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/dto/RTNGiphyRating.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/dto/RTNGiphyRendition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/dto/RTNGiphyRendition.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/dto/RTNResizeMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/dto/RTNResizeMode.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/events/OnGridContentUpdateEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/events/OnGridContentUpdateEvent.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/events/OnGridMediaSelectEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/events/OnGridMediaSelectEvent.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/events/OnGridScrollEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/events/OnGridScrollEvent.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/events/OnPlayerErrorEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/events/OnPlayerErrorEvent.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/events/OnPlayerMuteEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/events/OnPlayerMuteEvent.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/events/OnPlayerPlaybackStateChangeEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/events/OnPlayerPlaybackStateChangeEvent.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/events/OnPlayerUnmuteEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/events/OnPlayerUnmuteEvent.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/utils/CaseConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/utils/CaseConverter.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/utils/JsonArguments.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/utils/JsonArguments.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/utils/JsonElementConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/utils/JsonElementConverter.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/utils/VideoCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/utils/VideoCache.kt -------------------------------------------------------------------------------- /android/src/main/java/com/giphyreactnativesdk/utils/VideoPlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/main/java/com/giphyreactnativesdk/utils/VideoPlayer.kt -------------------------------------------------------------------------------- /android/src/newarch/RTNGiphyDialogModuleSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/newarch/RTNGiphyDialogModuleSpec.kt -------------------------------------------------------------------------------- /android/src/newarch/RTNGiphyGridViewManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/newarch/RTNGiphyGridViewManagerSpec.kt -------------------------------------------------------------------------------- /android/src/newarch/RTNGiphyMediaViewManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/newarch/RTNGiphyMediaViewManagerSpec.kt -------------------------------------------------------------------------------- /android/src/newarch/RTNGiphySdkModuleSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/newarch/RTNGiphySdkModuleSpec.kt -------------------------------------------------------------------------------- /android/src/newarch/RTNGiphyVideoManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/newarch/RTNGiphyVideoManagerSpec.kt -------------------------------------------------------------------------------- /android/src/newarch/RTNGiphyVideoViewManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/newarch/RTNGiphyVideoViewManagerSpec.kt -------------------------------------------------------------------------------- /android/src/oldarch/RTNGiphyDialogModuleSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/oldarch/RTNGiphyDialogModuleSpec.kt -------------------------------------------------------------------------------- /android/src/oldarch/RTNGiphyGridViewManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/oldarch/RTNGiphyGridViewManagerSpec.kt -------------------------------------------------------------------------------- /android/src/oldarch/RTNGiphyMediaViewManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/oldarch/RTNGiphyMediaViewManagerSpec.kt -------------------------------------------------------------------------------- /android/src/oldarch/RTNGiphySdkModuleSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/oldarch/RTNGiphySdkModuleSpec.kt -------------------------------------------------------------------------------- /android/src/oldarch/RTNGiphyVideoManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/oldarch/RTNGiphyVideoManagerSpec.kt -------------------------------------------------------------------------------- /android/src/oldarch/RTNGiphyVideoViewManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/android/src/oldarch/RTNGiphyVideoViewManagerSpec.kt -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/app.plugin.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/animated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/animated.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/assets/android-theme-scheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/assets/android-theme-scheme.pdf -------------------------------------------------------------------------------- /docs/assets/example_app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/assets/example_app.gif -------------------------------------------------------------------------------- /docs/assets/ios-theme-scheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/assets/ios-theme-scheme.pdf -------------------------------------------------------------------------------- /docs/assets/new-feature.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/assets/new-feature.gif -------------------------------------------------------------------------------- /docs/assets/sdk-dynamic-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/assets/sdk-dynamic-text.png -------------------------------------------------------------------------------- /docs/assets/sdk_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/assets/sdk_logo.gif -------------------------------------------------------------------------------- /docs/clips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/clips.md -------------------------------------------------------------------------------- /docs/expo-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/expo-integration.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/localization.md -------------------------------------------------------------------------------- /docs/migrating-to-giphy-react-native-sdk-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/migrating-to-giphy-react-native-sdk-2.md -------------------------------------------------------------------------------- /docs/testing-jest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/docs/testing-jest.md -------------------------------------------------------------------------------- /e2e/GiphyDialog.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/GiphyDialog.e2e.ts -------------------------------------------------------------------------------- /e2e/GiphyDialogSettings.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/GiphyDialogSettings.e2e.ts -------------------------------------------------------------------------------- /e2e/GiphyGridView.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/GiphyGridView.e2e.ts -------------------------------------------------------------------------------- /e2e/MainScreen.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/MainScreen.e2e.ts -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-checkered-background-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-checkered-background-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-checkered-background-2.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-checkered-background-2.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-2.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-2.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-2.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-2.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-3.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-3.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-3.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-3.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-4.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-4.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-4.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-4.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-5.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-5.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-5.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-confirmation-screen-5.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-custom-theme-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-custom-theme-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-custom-theme-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-custom-theme-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-custom-theme-2.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-custom-theme-2.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-custom-theme-2.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-custom-theme-2.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-2.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-2.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-2.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-2.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-3.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-3.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-3.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-dynamic-text-enabled-3.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-media-type-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-media-type-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-media-type-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-media-type-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-media-type-2.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-media-type-2.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-media-type-2.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-media-type-2.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-media-type-3.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-media-type-3.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-media-type-3.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-media-type-3.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-2.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-2.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-2.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-2.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-3.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-3.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-3.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-3.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-4.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-4.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-4.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-4.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-5.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-5.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-5.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-5.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-6.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-6.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-6.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-selected-content-type-6.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-2.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-2.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-2.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-2.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-3.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-3.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-3.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-settings-theme-preset-3.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-should-be-displayed-a-message-if-no-gifs-are-found-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-should-be-displayed-a-message-if-no-gifs-are-found-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-should-be-displayed-a-message-if-no-gifs-are-found-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-should-be-displayed-a-message-if-no-gifs-are-found-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-should-show-the-default-dialog-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-should-show-the-default-dialog-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-dialog-should-show-the-default-dialog-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-dialog-should-show-the-default-dialog-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-2.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-2.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-2.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-2.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-3.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-3.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-3.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-be-displayed-a-message-if-no-gifs-are-found-3.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-1.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-2.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-2.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-2.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-2.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-3.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-3.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-3.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/giphy-grid-view-should-select-a-gif-from-the-search-results-3.ios.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/main-screen-should-contain-2-visible-gifs-1.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/main-screen-should-contain-2-visible-gifs-1.android.png -------------------------------------------------------------------------------- /e2e/__image_snapshots__/main-screen-should-contain-2-visible-gifs-1.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/__image_snapshots__/main-screen-should-contain-2-visible-gifs-1.ios.png -------------------------------------------------------------------------------- /e2e/config/jest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/config/jest.d.ts -------------------------------------------------------------------------------- /e2e/config/runnerConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/config/runnerConfig.js -------------------------------------------------------------------------------- /e2e/config/runnerSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/config/runnerSetup.ts -------------------------------------------------------------------------------- /e2e/config/setUpTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/config/setUpTests.ts -------------------------------------------------------------------------------- /e2e/utils/elementActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/utils/elementActions.ts -------------------------------------------------------------------------------- /e2e/utils/giphyDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/utils/giphyDialog.ts -------------------------------------------------------------------------------- /e2e/utils/imageSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/utils/imageSnapshot.ts -------------------------------------------------------------------------------- /e2e/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/utils/index.ts -------------------------------------------------------------------------------- /e2e/utils/rootElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/utils/rootElement.ts -------------------------------------------------------------------------------- /e2e/utils/searchTerm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/utils/searchTerm.ts -------------------------------------------------------------------------------- /e2e/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/e2e/utils/wait.ts -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /example/.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/.example.env -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/.project -------------------------------------------------------------------------------- /example/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /example/android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/.classpath -------------------------------------------------------------------------------- /example/android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/.project -------------------------------------------------------------------------------- /example/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/androidTest/java/com/example/giphyreactnativesdk/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/androidTest/java/com/example/giphyreactnativesdk/DetoxTest.java -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/giphyreactnativesdk/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/debug/java/com/example/giphyreactnativesdk/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/giphyreactnativesdk/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/java/com/example/giphyreactnativesdk/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/giphyreactnativesdk/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/java/com/example/giphyreactnativesdk/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/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/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/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/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/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/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/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/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /example/android/app/src/release/java/com/example/giphyreactnativesdk/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/app/src/release/java/com/example/giphyreactnativesdk/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/.xcode.env.local: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=/opt/homebrew/bin/node 2 | 3 | -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample.xcodeproj/xcshareddata/xcschemes/GiphyReactNativeSdkExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample.xcodeproj/xcshareddata/xcschemes/GiphyReactNativeSdkExample.xcscheme -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample/Info.plist -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/GiphyReactNativeSdkExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/GiphyReactNativeSdkExample/main.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Resources/Settings.bundle/Acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/Resources/Settings.bundle/Acknowledgements.plist -------------------------------------------------------------------------------- /example/ios/Resources/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/Resources/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /example/ios/Resources/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/ios/Resources/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/scripts/build.android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/scripts/build.android.sh -------------------------------------------------------------------------------- /example/scripts/build.ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/scripts/build.ios.sh -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/Dialog.tsx -------------------------------------------------------------------------------- /example/src/MediaGridSample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/MediaGridSample.tsx -------------------------------------------------------------------------------- /example/src/MediaViewSample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/MediaViewSample.tsx -------------------------------------------------------------------------------- /example/src/Settings/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/Settings/Card.tsx -------------------------------------------------------------------------------- /example/src/Settings/GiphyDialogSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/Settings/GiphyDialogSettings.tsx -------------------------------------------------------------------------------- /example/src/Settings/InputCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/Settings/InputCard.tsx -------------------------------------------------------------------------------- /example/src/Settings/PickerSelectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/Settings/PickerSelectCard.tsx -------------------------------------------------------------------------------- /example/src/Settings/SwitchCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/Settings/SwitchCard.tsx -------------------------------------------------------------------------------- /example/src/Settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/Settings/index.ts -------------------------------------------------------------------------------- /example/src/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/fixtures.ts -------------------------------------------------------------------------------- /example/src/giphy.setup.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/giphy.setup.android.ts -------------------------------------------------------------------------------- /example/src/giphy.setup.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/giphy.setup.ios.ts -------------------------------------------------------------------------------- /example/src/giphy.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/giphy.setup.ts -------------------------------------------------------------------------------- /example/src/react-native-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/react-native-config.d.ts -------------------------------------------------------------------------------- /example/src/theme/customThemeSample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/src/theme/customThemeSample.ts -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /giphy-react-native-sdk.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/giphy-react-native-sdk.podspec -------------------------------------------------------------------------------- /ios/.npmignore: -------------------------------------------------------------------------------- 1 | # IJ 2 | .idea 3 | -------------------------------------------------------------------------------- /ios/GiphyReactNativeSDK-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/GiphyReactNativeSDK-Bridging-Header.h -------------------------------------------------------------------------------- /ios/GiphyReactNativeSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/GiphyReactNativeSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/GiphyReactNativeSDK.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/GiphyReactNativeSDK.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/GiphyReactNativeSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/GiphyReactNativeSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/RTNGiphyDialogModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyDialogModule.h -------------------------------------------------------------------------------- /ios/RTNGiphyDialogModule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyDialogModule.mm -------------------------------------------------------------------------------- /ios/RTNGiphyDialogModuleImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyDialogModuleImpl.swift -------------------------------------------------------------------------------- /ios/RTNGiphyGridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyGridView.h -------------------------------------------------------------------------------- /ios/RTNGiphyGridView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyGridView.mm -------------------------------------------------------------------------------- /ios/RTNGiphyGridViewImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyGridViewImpl.swift -------------------------------------------------------------------------------- /ios/RTNGiphyGridViewManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyGridViewManager.mm -------------------------------------------------------------------------------- /ios/RTNGiphyMediaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyMediaView.h -------------------------------------------------------------------------------- /ios/RTNGiphyMediaView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyMediaView.mm -------------------------------------------------------------------------------- /ios/RTNGiphyMediaViewImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyMediaViewImpl.swift -------------------------------------------------------------------------------- /ios/RTNGiphyMediaViewManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyMediaViewManager.mm -------------------------------------------------------------------------------- /ios/RTNGiphySDKModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphySDKModule.h -------------------------------------------------------------------------------- /ios/RTNGiphySDKModule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphySDKModule.mm -------------------------------------------------------------------------------- /ios/RTNGiphySDKModuleImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphySDKModuleImpl.swift -------------------------------------------------------------------------------- /ios/RTNGiphyTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyTheme.swift -------------------------------------------------------------------------------- /ios/RTNGiphyVideoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyVideoManager.h -------------------------------------------------------------------------------- /ios/RTNGiphyVideoManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyVideoManager.mm -------------------------------------------------------------------------------- /ios/RTNGiphyVideoManagerImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyVideoManagerImpl.swift -------------------------------------------------------------------------------- /ios/RTNGiphyVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyVideoView.h -------------------------------------------------------------------------------- /ios/RTNGiphyVideoView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyVideoView.mm -------------------------------------------------------------------------------- /ios/RTNGiphyVideoViewImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyVideoViewImpl.swift -------------------------------------------------------------------------------- /ios/RTNGiphyVideoViewManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/RTNGiphyVideoViewManager.mm -------------------------------------------------------------------------------- /ios/SharedVideoPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/SharedVideoPlayer.swift -------------------------------------------------------------------------------- /ios/Utils/GPHMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/Utils/GPHMedia.swift -------------------------------------------------------------------------------- /ios/Utils/RTNGiphySDKInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/Utils/RTNGiphySDKInfo.swift -------------------------------------------------------------------------------- /ios/Utils/RTNGiphyTypeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/Utils/RTNGiphyTypeExtensions.swift -------------------------------------------------------------------------------- /ios/Utils/ResizeMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/ios/Utils/ResizeMode.swift -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/package.json -------------------------------------------------------------------------------- /scripts/avd.create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/avd.create.sh -------------------------------------------------------------------------------- /scripts/avd.defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/avd.defaults.sh -------------------------------------------------------------------------------- /scripts/avd.demo-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/avd.demo-mode.sh -------------------------------------------------------------------------------- /scripts/avd.run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/avd.run.sh -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /scripts/github-latest-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/github-latest-release.sh -------------------------------------------------------------------------------- /scripts/licenses.check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/licenses.check.js -------------------------------------------------------------------------------- /scripts/licenses.generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/licenses.generate.sh -------------------------------------------------------------------------------- /scripts/pkg.get-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/pkg.get-tag.js -------------------------------------------------------------------------------- /scripts/sdk.bump.android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sdk.bump.android.sh -------------------------------------------------------------------------------- /scripts/sdk.bump.ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sdk.bump.ios.sh -------------------------------------------------------------------------------- /scripts/sdk.conf.android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sdk.conf.android.sh -------------------------------------------------------------------------------- /scripts/sdk.conf.ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sdk.conf.ios.sh -------------------------------------------------------------------------------- /scripts/sdk.latest-version.android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sdk.latest-version.android.sh -------------------------------------------------------------------------------- /scripts/sdk.latest-version.ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sdk.latest-version.ios.sh -------------------------------------------------------------------------------- /scripts/sdk.version-by-hash.android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sdk.version-by-hash.android.sh -------------------------------------------------------------------------------- /scripts/sdk.version-by-hash.ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sdk.version-by-hash.ios.sh -------------------------------------------------------------------------------- /scripts/sim.create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sim.create.sh -------------------------------------------------------------------------------- /scripts/sim.defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sim.defaults.sh -------------------------------------------------------------------------------- /scripts/sim.demo-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/scripts/sim.demo-mode.sh -------------------------------------------------------------------------------- /src/GiphyContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/GiphyContent.ts -------------------------------------------------------------------------------- /src/GiphyDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/GiphyDialog.ts -------------------------------------------------------------------------------- /src/GiphyGridView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/GiphyGridView.tsx -------------------------------------------------------------------------------- /src/GiphyMediaView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/GiphyMediaView.tsx -------------------------------------------------------------------------------- /src/GiphySDK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/GiphySDK.ts -------------------------------------------------------------------------------- /src/GiphyVideoManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/GiphyVideoManager.ts -------------------------------------------------------------------------------- /src/GiphyVideoView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/GiphyVideoView.tsx -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test') 2 | -------------------------------------------------------------------------------- /src/dto/giphyContentRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/giphyContentRequest.ts -------------------------------------------------------------------------------- /src/dto/giphyContentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/giphyContentType.ts -------------------------------------------------------------------------------- /src/dto/giphyFileExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/giphyFileExtension.ts -------------------------------------------------------------------------------- /src/dto/giphyMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/giphyMedia.ts -------------------------------------------------------------------------------- /src/dto/giphyMediaType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/giphyMediaType.ts -------------------------------------------------------------------------------- /src/dto/giphyRating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/giphyRating.ts -------------------------------------------------------------------------------- /src/dto/giphyRendition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/giphyRendition.ts -------------------------------------------------------------------------------- /src/dto/giphyTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/giphyTheme.ts -------------------------------------------------------------------------------- /src/dto/giphyThemePreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/giphyThemePreset.ts -------------------------------------------------------------------------------- /src/dto/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/dto/misc.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/specs/GiphyGridViewNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/specs/GiphyGridViewNativeComponent.ts -------------------------------------------------------------------------------- /src/specs/GiphyMediaViewNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/specs/GiphyMediaViewNativeComponent.ts -------------------------------------------------------------------------------- /src/specs/GiphyVideoViewNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/specs/GiphyVideoViewNativeComponent.ts -------------------------------------------------------------------------------- /src/specs/NativeGiphyDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/specs/NativeGiphyDialog.ts -------------------------------------------------------------------------------- /src/specs/NativeGiphySDK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/specs/NativeGiphySDK.ts -------------------------------------------------------------------------------- /src/specs/NativeGiphyVideoManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/specs/NativeGiphyVideoManager.ts -------------------------------------------------------------------------------- /src/utils/deprecatedPropType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/src/utils/deprecatedPropType.ts -------------------------------------------------------------------------------- /src/utils/noop.ts: -------------------------------------------------------------------------------- 1 | export function noop(): void {} 2 | -------------------------------------------------------------------------------- /templates/changelog-commit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/templates/changelog-commit.hbs -------------------------------------------------------------------------------- /templates/changelog-footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/templates/changelog-footer.hbs -------------------------------------------------------------------------------- /templates/changelog-header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/templates/changelog-header.hbs -------------------------------------------------------------------------------- /templates/changelog-native-sdk.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/templates/changelog-native-sdk.hbs -------------------------------------------------------------------------------- /templates/changelog.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/templates/changelog.hbs -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/tsconfig.check.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/HEAD/yarn.lock --------------------------------------------------------------------------------