From 22e82dfc2a912f06425483f85eee78c90d99e603 Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Sat, 14 Nov 2020 11:06:43 -0300 Subject: [PATCH] Barebones code for v2 --- .buckconfig | 6 + .circleci/config.yml | 600 + .editorconfig | 18 + .env | 2 + .eslintrc.json | 75 + .flowconfig | 74 + .gitattributes | 4 + .gitignore | 103 + .npmrc | 1 + .storybook/main.js | 6 + .storybook/preview.js | 5 + .watchmanconfig | 1 + CHANGELOG.md | 1 + CONTRIBUTING.md | 5 + ISSUE_TEMPLATE.md | 23 + LICENSE.txt | 203 + NOTICE.txt | 3171 ++ PULL_REQUEST_TEMPLATE.md | 36 + README.md | 80 + SECURITY.md | 25 + android/app/BUCK | 65 + android/app/build.gradle | 282 + android/app/google-services.json | 104 + android/app/proguard-rules.pro | 10 + .../java/com/mattermost/rnbeta/DetoxTest.java | 28 + android/app/src/debug/AndroidManifest.xml | 8 + .../debug/java/com/rn/ReactNativeFlipper.java | 68 + android/app/src/main/AndroidManifest.xml | 76 + .../src/main/assets/fonts/OpenSans-Bold.ttf | Bin 0 -> 224592 bytes .../main/assets/fonts/OpenSans-BoldItalic.ttf | Bin 0 -> 213292 bytes .../main/assets/fonts/OpenSans-ExtraBold.ttf | Bin 0 -> 222584 bytes .../assets/fonts/OpenSans-ExtraBoldItalic.ttf | Bin 0 -> 213420 bytes .../src/main/assets/fonts/OpenSans-Italic.ttf | Bin 0 -> 212896 bytes .../src/main/assets/fonts/OpenSans-Light.ttf | Bin 0 -> 222412 bytes .../assets/fonts/OpenSans-LightItalic.ttf | Bin 0 -> 213128 bytes .../main/assets/fonts/OpenSans-Regular.ttf | Bin 0 -> 217360 bytes .../main/assets/fonts/OpenSans-Semibold.ttf | Bin 0 -> 221328 bytes .../assets/fonts/OpenSans-SemiboldItalic.ttf | Bin 0 -> 212820 bytes .../src/main/assets/fonts/compass-icons.ttf | Bin 0 -> 61240 bytes .../com/mattermost/helpers/AsyncStorage.java | 93 + .../com/mattermost/helpers/Credentials.java | 35 + .../mattermost/helpers/KeysReadableArray.java | 68 + .../com/mattermost/helpers/RealPathUtil.java | 234 + .../mattermost/helpers/ResolvePromise.java | 64 + .../rnbeta/CustomPushNotification.java | 563 + .../rnbeta/CustomPushNotificationDrawer.java | 35 + .../com/mattermost/rnbeta/MainActivity.java | 50 + .../mattermost/rnbeta/MainApplication.java | 239 + .../rnbeta/NotificationDismissService.java | 26 + .../rnbeta/NotificationPreferences.java | 57 + .../rnbeta/NotificationPreferencesModule.java | 133 + .../NotificationReplyBroadcastReceiver.java | 166 + .../rnbeta/RNTextInputResetModule.java | 42 + .../mattermost/rnbeta/ReceiptDelivery.java | 154 + .../rnbeta/generated/BasePackageList.java | 14 + .../com/mattermost/share/ShareActivity.java | 20 + .../com/mattermost/share/ShareModule.java | 263 + .../com/mattermost/share/SharePackage.java | 34 + .../drawable-hdpi/ic_notif_action_reply.png | Bin 0 -> 413 bytes .../app/src/main/res/drawable-hdpi/splash.png | Bin 0 -> 13017 bytes .../drawable-mdpi/ic_notif_action_reply.png | Bin 0 -> 348 bytes .../app/src/main/res/drawable-mdpi/splash.png | Bin 0 -> 8184 bytes .../drawable-xhdpi/ic_notif_action_reply.png | Bin 0 -> 610 bytes .../src/main/res/drawable-xhdpi/splash.png | Bin 0 -> 17977 bytes .../drawable-xxhdpi/ic_notif_action_reply.png | Bin 0 -> 833 bytes .../src/main/res/drawable-xxhdpi/splash.png | Bin 0 -> 30518 bytes .../ic_notif_action_reply.png | Bin 0 -> 1261 bytes .../src/main/res/drawable-xxxhdpi/splash.png | Bin 0 -> 32490 bytes .../app/src/main/res/layout/launch_screen.xml | 25 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 4930 bytes .../mipmap-hdpi/ic_launcher_background.png | Bin 0 -> 855 bytes .../mipmap-hdpi/ic_launcher_foreground.png | Bin 0 -> 10088 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 7201 bytes .../main/res/mipmap-hdpi/ic_notification.png | Bin 0 -> 1035 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2729 bytes .../mipmap-mdpi/ic_launcher_background.png | Bin 0 -> 490 bytes .../mipmap-mdpi/ic_launcher_foreground.png | Bin 0 -> 4599 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 3855 bytes .../main/res/mipmap-mdpi/ic_notification.png | Bin 0 -> 847 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 7158 bytes .../mipmap-xhdpi/ic_launcher_background.png | Bin 0 -> 985 bytes .../mipmap-xhdpi/ic_launcher_foreground.png | Bin 0 -> 6243 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 10673 bytes .../main/res/mipmap-xhdpi/ic_notification.png | Bin 0 -> 1225 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 13359 bytes .../mipmap-xxhdpi/ic_launcher_background.png | Bin 0 -> 1652 bytes .../mipmap-xxhdpi/ic_launcher_foreground.png | Bin 0 -> 7464 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 18848 bytes .../res/mipmap-xxhdpi/ic_notification.png | Bin 0 -> 1659 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 17777 bytes .../mipmap-xxxhdpi/ic_launcher_background.png | Bin 0 -> 2349 bytes .../mipmap-xxxhdpi/ic_launcher_foreground.png | Bin 0 -> 8719 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 24004 bytes .../res/mipmap-xxxhdpi/ic_notification.png | Bin 0 -> 2052 bytes android/app/src/main/res/values/colors.xml | 5 + android/app/src/main/res/values/strings.xml | 21 + android/app/src/main/res/values/styles.xml | 22 + .../app/src/main/res/xml/app_restrictions.xml | 59 + .../main/res/xml/network_security_config.xml | 11 + android/build.gradle | 74 + android/gradle.properties | 33 + android/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 58695 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 + android/gradlew | 183 + android/gradlew.bat | 103 + android/settings.gradle | 6 + app.json | 4 + app/constants/about_links.ts | 7 + app/constants/attachment.ts | 10 + app/constants/autocomplete.ts | 29 + app/constants/deep_linking.ts | 8 + app/constants/device.ts | 26 + app/constants/emoji.ts | 10 + app/constants/image.ts | 16 + app/constants/index.ts | 25 + app/constants/list.ts | 13 + app/constants/navigation.ts | 20 + app/constants/post_draft.ts | 36 + app/constants/preferences.ts | 154 + app/constants/reaction_picker.ts | 27 + app/constants/screens.ts | 16 + app/constants/view.ts | 139 + app/constants/websocket.ts | 47 + app/i18n/index.ts | 109 + app/init/analytics.ts | 187 + app/init/credentials.ts | 95 + app/init/device.ts | 15 + app/init/emm_provider.ts | 212 + app/init/global_event_handler.ts | 189 + app/init/push_notifications.ts | 244 + app/mattermost.ts | 98 + app/notifications/index.ios.ts | 17 + app/notifications/index.ts | 40 + app/screens/channel/index.tsx | 112 + app/screens/index.ts | 207 + app/screens/navigation.ts | 474 + app/screens/server/index.tsx | 118 + app/store/ephemeral_store.ts | 75 + app/utils/client_error.ts | 27 + app/utils/error_handling.ts | 60 + app/utils/file.ts | 29 + app/utils/font_family.js | 31 + app/utils/key_mirror.ts | 18 + app/utils/logging.ts | 50 + app/utils/security.ts | 9 + app/utils/sentry.ts | 247 + assets/base/compass-icons.json | 2894 ++ assets/base/config.json | 45 + assets/base/i18n/de.json | 627 + assets/base/i18n/en.json | 650 + assets/base/i18n/es.json | 657 + assets/base/i18n/fr.json | 619 + assets/base/i18n/it.json | 632 + assets/base/i18n/ja.json | 657 + assets/base/i18n/ko.json | 641 + assets/base/i18n/nl.json | 657 + assets/base/i18n/pl.json | 610 + assets/base/i18n/pt-BR.json | 647 + assets/base/i18n/ro.json | 641 + assets/base/i18n/ru.json | 647 + assets/base/i18n/tr.json | 648 + assets/base/i18n/uk.json | 601 + assets/base/i18n/zh-CN.json | 647 + assets/base/i18n/zh-TW.json | 641 + .../images/autocomplete/slash_command.png | Bin 0 -> 256 bytes .../images/autocomplete/slash_command@2x.png | Bin 0 -> 360 bytes .../images/autocomplete/slash_command@3x.png | Bin 0 -> 516 bytes assets/base/images/gitlab.png | Bin 0 -> 509 bytes assets/base/images/icon.png | Bin 0 -> 8285 bytes .../base/images/icons/youtube-play-icon.png | Bin 0 -> 1304 bytes assets/base/images/themes/mattermost.png | Bin 0 -> 988 bytes assets/base/images/themes/mattermost@2x.png | Bin 0 -> 2084 bytes assets/base/images/themes/mattermost@3x.png | Bin 0 -> 3524 bytes assets/base/images/themes/mattermost_dark.png | Bin 0 -> 899 bytes .../base/images/themes/mattermost_dark@2x.png | Bin 0 -> 1957 bytes .../base/images/themes/mattermost_dark@3x.png | Bin 0 -> 3344 bytes assets/base/images/themes/organization.png | Bin 0 -> 988 bytes assets/base/images/themes/organization@2x.png | Bin 0 -> 2094 bytes assets/base/images/themes/organization@3x.png | Bin 0 -> 3524 bytes assets/base/images/themes/windows_dark.png | Bin 0 -> 895 bytes assets/base/images/themes/windows_dark@2x.png | Bin 0 -> 1936 bytes assets/base/images/themes/windows_dark@3x.png | Bin 0 -> 3345 bytes assets/base/images/thumb.png | Bin 0 -> 884 bytes assets/base/images/thumb@2x.png | Bin 0 -> 1352 bytes assets/base/images/thumb@3x.png | Bin 0 -> 1833 bytes .../android/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../icons/android/mipmap-hdpi/ic_launcher.png | Bin 0 -> 1963 bytes .../mipmap-hdpi/ic_launcher_background.png | Bin 0 -> 374 bytes .../mipmap-hdpi/ic_launcher_foreground.png | Bin 0 -> 4170 bytes .../android/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 4829 bytes .../android/mipmap-hdpi/ic_notification.png | Bin 0 -> 1220 bytes .../icons/android/mipmap-mdpi/ic_launcher.png | Bin 0 -> 1292 bytes .../mipmap-mdpi/ic_launcher_background.png | Bin 0 -> 239 bytes .../mipmap-mdpi/ic_launcher_foreground.png | Bin 0 -> 2445 bytes .../android/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 3027 bytes .../android/mipmap-mdpi/ic_notification.png | Bin 0 -> 971 bytes .../android/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 2574 bytes .../mipmap-xhdpi/ic_launcher_background.png | Bin 0 -> 517 bytes .../mipmap-xhdpi/ic_launcher_foreground.png | Bin 0 -> 5987 bytes .../mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 6884 bytes .../android/mipmap-xhdpi/ic_notification.png | Bin 0 -> 1519 bytes .../android/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 3883 bytes .../mipmap-xxhdpi/ic_launcher_background.png | Bin 0 -> 905 bytes .../mipmap-xxhdpi/ic_launcher_foreground.png | Bin 0 -> 11550 bytes .../mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 11253 bytes .../android/mipmap-xxhdpi/ic_notification.png | Bin 0 -> 2141 bytes .../android/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 5366 bytes .../mipmap-xxxhdpi/ic_launcher_background.png | Bin 0 -> 1359 bytes .../mipmap-xxxhdpi/ic_launcher_foreground.png | Bin 0 -> 17625 bytes .../mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 16695 bytes .../mipmap-xxxhdpi/ic_notification.png | Bin 0 -> 2825 bytes assets/base/release/icons/ios/20.png | Bin 0 -> 900 bytes assets/base/release/icons/ios/20@2x.png | Bin 0 -> 2304 bytes assets/base/release/icons/ios/20@3x.png | Bin 0 -> 5593 bytes assets/base/release/icons/ios/29.png | Bin 0 -> 1940 bytes assets/base/release/icons/ios/29@2x.png | Bin 0 -> 5234 bytes assets/base/release/icons/ios/29@3x.png | Bin 0 -> 8720 bytes assets/base/release/icons/ios/40.png | Bin 0 -> 2304 bytes assets/base/release/icons/ios/40@2x.png | Bin 0 -> 7974 bytes assets/base/release/icons/ios/40@3x.png | Bin 0 -> 13049 bytes assets/base/release/icons/ios/76.png | Bin 0 -> 7293 bytes assets/base/release/icons/ios/76@2x.png | Bin 0 -> 16141 bytes assets/base/release/icons/ios/83.5@2x.png | Bin 0 -> 12324 bytes assets/base/release/icons/ios/Icon-60@2x.png | Bin 0 -> 8064 bytes assets/base/release/icons/ios/Icon-60@3x.png | Bin 0 -> 11646 bytes .../release/icons/ios/iTunesArtwork@2x.png | Bin 0 -> 304313 bytes .../drawable-hdpi/ic_notif_action_reply.png | Bin 0 -> 413 bytes .../android/drawable-hdpi/splash.png | Bin 0 -> 13017 bytes .../drawable-mdpi/ic_notif_action_reply.png | Bin 0 -> 348 bytes .../android/drawable-mdpi/splash.png | Bin 0 -> 8184 bytes .../drawable-xhdpi/ic_notif_action_reply.png | Bin 0 -> 610 bytes .../android/drawable-xhdpi/splash.png | Bin 0 -> 17977 bytes .../drawable-xxhdpi/ic_notif_action_reply.png | Bin 0 -> 833 bytes .../android/drawable-xxhdpi/splash.png | Bin 0 -> 30518 bytes .../ic_notif_action_reply.png | Bin 0 -> 1261 bytes .../android/drawable-xxxhdpi/splash.png | Bin 0 -> 32490 bytes .../android/layout/launch_screen.xml | 25 + .../splash_screen/ios/LaunchScreen.storyboard | 47 + .../base/release/splash_screen/ios/splash.png | Bin 0 -> 43251 bytes assets/fonts/OpenSans-Bold.ttf | Bin 0 -> 224592 bytes assets/fonts/OpenSans-BoldItalic.ttf | Bin 0 -> 213292 bytes assets/fonts/OpenSans-ExtraBold.ttf | Bin 0 -> 222584 bytes assets/fonts/OpenSans-ExtraBoldItalic.ttf | Bin 0 -> 213420 bytes assets/fonts/OpenSans-Italic.ttf | Bin 0 -> 212896 bytes assets/fonts/OpenSans-Light.ttf | Bin 0 -> 222412 bytes assets/fonts/OpenSans-LightItalic.ttf | Bin 0 -> 213128 bytes assets/fonts/OpenSans-Regular.ttf | Bin 0 -> 217360 bytes assets/fonts/OpenSans-Semibold.ttf | Bin 0 -> 221328 bytes assets/fonts/OpenSans-SemiboldItalic.ttf | Bin 0 -> 212820 bytes assets/fonts/compass-icons.ttf | Bin 0 -> 61240 bytes babel.config.js | 42 + detox/.babelrc | 13 + detox/.detoxrc.json | 45 + detox/e2e/config.js | 28 + detox/e2e/environment.js | 25 + detox/e2e/init.js | 22 + detox/e2e/path_builder.js | 24 + detox/e2e/support/fixtures/ldap_users.json | 32 + detox/e2e/support/server_api/channel.js | 99 + detox/e2e/support/server_api/client.js | 13 + detox/e2e/support/server_api/common.js | 47 + .../support/server_api/default_config.json | 296 + detox/e2e/support/server_api/index.js | 20 + detox/e2e/support/server_api/ldap.js | 68 + detox/e2e/support/server_api/post.js | 54 + detox/e2e/support/server_api/setup.js | 36 + detox/e2e/support/server_api/system.js | 190 + detox/e2e/support/server_api/team.js | 94 + detox/e2e/support/server_api/user.js | 152 + detox/e2e/support/test_config.js | 11 + detox/e2e/support/utils.js | 53 + detox/package-lock.json | 7810 ++++ detox/package.json | 40 + docs/base_configs.md | 20 + env.d.ts | 8 + fastlane/Fastfile | 924 + fastlane/Gemfile | 7 + fastlane/Gemfile.lock | 193 + fastlane/Matchfile | 7 + fastlane/Pluginfile | 8 + .../actions/android_commit_version_bump.rb | 131 + .../actions/android_increment_version_code.rb | 116 + .../actions/android_update_application_id.rb | 110 + fastlane/actions/mattermost.rb | 252 + fastlane/env_vars_example | 78 + .../android/en-US/full_description.txt | 19 + .../metadata/android/en-US/images/icon.png | Bin 0 -> 16427 bytes .../android/en-US/images/tvBanner.png | Bin 0 -> 61128 bytes .../android/en-US/short_description.txt | 1 + fastlane/metadata/android/en-US/title.txt | 1 + fastlane/metadata/android/en-US/video.txt | 0 fastlane/metadata/changelog | 5 + fastlane/metadata/copyright.txt | 1 + fastlane/metadata/en-US/description.txt | 13 + fastlane/metadata/en-US/keywords.txt | 3 + fastlane/metadata/en-US/marketing_url.txt | 1 + fastlane/metadata/en-US/name.txt | 1 + fastlane/metadata/en-US/privacy_url.txt | 1 + fastlane/metadata/en-US/release_notes.txt | 1 + fastlane/metadata/en-US/support_url.txt | 1 + fastlane/metadata/primary_category.txt | 1 + .../metadata/primary_first_sub_category.txt | 1 + .../metadata/primary_second_sub_category.txt | 1 + fastlane/metadata/secondary_category.txt | 1 + .../metadata/secondary_first_sub_category.txt | 1 + .../secondary_second_sub_category.txt | 1 + fastlane/plist.erb | 39 + fastlane/screenshots/README.txt | 7 + index.ts | 53 + ios/Fonts/Entypo.ttf | Bin 0 -> 65584 bytes ios/Fonts/EvilIcons.ttf | Bin 0 -> 13128 bytes ios/Fonts/FontAwesome.ttf | Bin 0 -> 152796 bytes ios/Fonts/Foundation.ttf | Bin 0 -> 56976 bytes ios/Fonts/Ionicons.ttf | Bin 0 -> 143936 bytes ios/Fonts/MaterialIcons.ttf | Bin 0 -> 128180 bytes ios/Fonts/Octicons.ttf | Bin 0 -> 30680 bytes ios/Fonts/Zocial.ttf | Bin 0 -> 25552 bytes ios/Gemfile | 3 + ios/Gemfile.lock | 93 + ios/Mattermost.xcodeproj/project.pbxproj | 1206 + .../xcschemes/Mattermost.xcscheme | 139 + .../xcschemes/MattermostShare.xcscheme | 111 + .../xcschemes/NotificationService.xcscheme | 108 + .../contents.xcworkspacedata | 10 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + ios/Mattermost/AppDelegate.h | 9 + ios/Mattermost/AppDelegate.m | 186 + .../Images.xcassets/AppIcon.appiconset/20.png | Bin 0 -> 1001 bytes .../AppIcon.appiconset/20@2x.png | Bin 0 -> 2769 bytes .../AppIcon.appiconset/20@3x.png | Bin 0 -> 4971 bytes .../Images.xcassets/AppIcon.appiconset/29.png | Bin 0 -> 1837 bytes .../AppIcon.appiconset/29@2x.png | Bin 0 -> 4738 bytes .../AppIcon.appiconset/29@3x.png | Bin 0 -> 7220 bytes .../Images.xcassets/AppIcon.appiconset/40.png | Bin 0 -> 2769 bytes .../AppIcon.appiconset/40@2x.png | Bin 0 -> 6465 bytes .../AppIcon.appiconset/40@3x.png | Bin 0 -> 11185 bytes .../Images.xcassets/AppIcon.appiconset/76.png | Bin 0 -> 5951 bytes .../AppIcon.appiconset/76@2x.png | Bin 0 -> 13053 bytes .../AppIcon.appiconset/83.5@2x.png | Bin 0 -> 15030 bytes .../AppIcon.appiconset/Contents.json | 116 + .../AppIcon.appiconset/Icon-60@2x.png | Bin 0 -> 11185 bytes .../AppIcon.appiconset/Icon-60@3x.png | Bin 0 -> 16888 bytes .../AppIcon.appiconset/iTunesArtwork@2x.png | Bin 0 -> 288554 bytes ios/Mattermost/Info.plist | 133 + ios/Mattermost/Mattermost-Bridging-Header.h | 4 + ios/Mattermost/Mattermost.entitlements | 30 + ios/Mattermost/MattermostManaged.h | 15 + ios/Mattermost/MattermostManaged.m | 42 + ...tificationEventHandler+HandleReplyAction.h | 17 + ...tificationEventHandler+HandleReplyAction.m | 144 + ios/Mattermost/RuntimeUtils.swift | 7 + ios/Mattermost/SwimeProxy.swift | 61 + ios/Mattermost/UIImage+vImageScaling.h | 16 + ios/Mattermost/UIImage+vImageScaling.m | 48 + ios/Mattermost/main.m | 9 + .../Base.lproj/MainInterface.storyboard | 24 + .../ChannelsViewController.swift | 175 + ios/MattermostShare/Config.swift | 6 + ios/MattermostShare/GenericPreview.swift | 25 + ios/MattermostShare/GenericPreview.xib | 57 + ios/MattermostShare/Images/generic.png | Bin 0 -> 33406 bytes ios/MattermostShare/Info.plist | 56 + ios/MattermostShare/Item.swift | 7 + .../MattermostShare-Bridging-Header.h | 6 + .../MattermostShare.entitlements | 10 + ios/MattermostShare/Section.swift | 13 + ios/MattermostShare/ShareViewController.swift | 551 + ios/MattermostShare/TeamsViewController.swift | 57 + ios/MattermostTests/Info.plist | 24 + ios/NotificationService/Info.plist | 33 + .../NotificationService.entitlements | 10 + .../NotificationService.swift | 112 + ios/Podfile | 34 + ios/Podfile.lock | 751 + .../LaunchScreen.storyboard | 47 + ios/SplashScreenResource/splash.png | Bin 0 -> 43251 bytes .../project.pbxproj | 396 + .../xcschemes/UploadAttachments.xcscheme | 80 + .../UploadAttachments/AttachmentArray.swift | 284 + .../UploadAttachments/AttachmentItem.swift | 12 + .../UploadAttachments/MMKeychainManager.h | 3 + .../UploadAttachments/MMKeychainManager.m | 73 + .../UploadAttachments/MMMConstants.h | 7 + .../UploadAttachments/MMMConstants.m | 7 + .../UploadAttachments/MattermostBucket.h | 12 + .../UploadAttachments/MattermostBucket.m | 80 + .../UploadAttachments/StoreManager.h | 27 + .../UploadAttachments/StoreManager.m | 456 + .../UploadAttachments-Bridging-Header.h | 8 + .../UploadAttachments/UploadManager.swift | 53 + .../UploadAttachments/UploadSession.swift | 175 + .../UploadSessionManager.swift | 80 + ios/bundleReactNative.sh | 15 + ios/makeSentryProperties.sh | 19 + ios/react-native-xcode.sh | 114 + ios/uploadDebugSymbols.sh | 12 + jest.config.js | 33 + jsconfig.json | 9 + metro.config.js | 47 + package-lock.json | 30618 ++++++++++++++++ package.json | 186 + packager/generateModulePaths.js | 46 + packager/moduleNames.js | 4 + packager/modules.ios.js | 4 + patches/react-native+0.63.3.patch | 61 + patches/react-native-device-info+7.0.2.patch | 17 + patches/react-native-elements+2.3.2.patch | 51 + patches/react-native-fast-image+8.3.4.patch | 78 + .../react-native-haptic-feedback+1.11.0.patch | 13 + patches/react-native-image-picker+2.3.4.patch | 476 + ...-native-keyboard-tracking-view+5.7.0.patch | 384 + patches/react-native-navigation+7.3.0.patch | 63 + .../react-native-notifications+3.4.0.patch | 499 + patches/react-native-vector-icons+7.1.0.patch | 25 + patches/react-native-youtube+2.0.1.patch | 74 + react-native.config.js | 15 + scripts/build.sh | 97 + scripts/clean.sh | 11 + scripts/generate-assets.js | 108 + scripts/postinstall.sh | 19 + scripts/pre-commit.sh | 32 + scripts/precommit/i18n.sh | 14 + share_extension/index.tsx | 112 + storybook/addons.ts | 3 + storybook/index.ts | 31 + storybook/mattermost_storybook.ts | 8 + storybook/storyLoader.js | 13 + tsconfig.json | 64 + tsconfig.test.json | 7 + types/api/client_error.d.ts | 10 + types/api/config.d.ts | 167 + types/global/error_handling.d.ts | 8 + types/global/global_event_handler.d.ts | 10 + types/global/native_notifications.d.ts | 24 + types/global/preferences.d.ts | 42 + types/global/push_notifications.d.ts | 47 + types/global/telemetry.d.ts | 10 + types/global/utilities.d.ts | 6 + types/modules/react-native-slider.d.ts | 134 + types/screens/gallery.d.ts | 116 + 444 files changed, 75871 insertions(+) create mode 100644 .buckconfig create mode 100644 .circleci/config.yml create mode 100644 .editorconfig create mode 100644 .env create mode 100644 .eslintrc.json create mode 100644 .flowconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .npmrc create mode 100644 .storybook/main.js create mode 100644 .storybook/preview.js create mode 100644 .watchmanconfig create mode 100644 CHANGELOG.md create mode 100644 CONTRIBUTING.md create mode 100644 ISSUE_TEMPLATE.md create mode 100644 LICENSE.txt create mode 100644 NOTICE.txt create mode 100644 PULL_REQUEST_TEMPLATE.md create mode 100644 README.md create mode 100644 SECURITY.md create mode 100644 android/app/BUCK create mode 100644 android/app/build.gradle create mode 100644 android/app/google-services.json create mode 100644 android/app/proguard-rules.pro create mode 100644 android/app/src/androidTest/java/com/mattermost/rnbeta/DetoxTest.java create mode 100644 android/app/src/debug/AndroidManifest.xml create mode 100644 android/app/src/debug/java/com/rn/ReactNativeFlipper.java create mode 100644 android/app/src/main/AndroidManifest.xml create mode 100755 android/app/src/main/assets/fonts/OpenSans-Bold.ttf create mode 100755 android/app/src/main/assets/fonts/OpenSans-BoldItalic.ttf create mode 100755 android/app/src/main/assets/fonts/OpenSans-ExtraBold.ttf create mode 100755 android/app/src/main/assets/fonts/OpenSans-ExtraBoldItalic.ttf create mode 100755 android/app/src/main/assets/fonts/OpenSans-Italic.ttf create mode 100755 android/app/src/main/assets/fonts/OpenSans-Light.ttf create mode 100755 android/app/src/main/assets/fonts/OpenSans-LightItalic.ttf create mode 100755 android/app/src/main/assets/fonts/OpenSans-Regular.ttf create mode 100755 android/app/src/main/assets/fonts/OpenSans-Semibold.ttf create mode 100755 android/app/src/main/assets/fonts/OpenSans-SemiboldItalic.ttf create mode 100644 android/app/src/main/assets/fonts/compass-icons.ttf create mode 100644 android/app/src/main/java/com/mattermost/helpers/AsyncStorage.java create mode 100644 android/app/src/main/java/com/mattermost/helpers/Credentials.java create mode 100644 android/app/src/main/java/com/mattermost/helpers/KeysReadableArray.java create mode 100644 android/app/src/main/java/com/mattermost/helpers/RealPathUtil.java create mode 100644 android/app/src/main/java/com/mattermost/helpers/ResolvePromise.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/CustomPushNotification.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/CustomPushNotificationDrawer.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/MainActivity.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/MainApplication.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/NotificationDismissService.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/NotificationPreferences.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/NotificationPreferencesModule.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/NotificationReplyBroadcastReceiver.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/RNTextInputResetModule.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/ReceiptDelivery.java create mode 100644 android/app/src/main/java/com/mattermost/rnbeta/generated/BasePackageList.java create mode 100644 android/app/src/main/java/com/mattermost/share/ShareActivity.java create mode 100644 android/app/src/main/java/com/mattermost/share/ShareModule.java create mode 100644 android/app/src/main/java/com/mattermost/share/SharePackage.java create mode 100644 android/app/src/main/res/drawable-hdpi/ic_notif_action_reply.png create mode 100644 android/app/src/main/res/drawable-hdpi/splash.png create mode 100644 android/app/src/main/res/drawable-mdpi/ic_notif_action_reply.png create mode 100644 android/app/src/main/res/drawable-mdpi/splash.png create mode 100644 android/app/src/main/res/drawable-xhdpi/ic_notif_action_reply.png create mode 100644 android/app/src/main/res/drawable-xhdpi/splash.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/ic_notif_action_reply.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/splash.png create mode 100644 android/app/src/main/res/drawable-xxxhdpi/ic_notif_action_reply.png create mode 100644 android/app/src/main/res/drawable-xxxhdpi/splash.png create mode 100644 android/app/src/main/res/layout/launch_screen.xml create mode 100644 android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100755 android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png create mode 100644 android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/mipmap-hdpi/ic_notification.png create mode 100755 android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png create mode 100644 android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/mipmap-mdpi/ic_notification.png create mode 100755 android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png create mode 100644 android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/mipmap-xhdpi/ic_notification.png create mode 100755 android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png create mode 100644 android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/mipmap-xxhdpi/ic_notification.png create mode 100755 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/ic_notification.png create mode 100644 android/app/src/main/res/values/colors.xml create mode 100644 android/app/src/main/res/values/strings.xml create mode 100644 android/app/src/main/res/values/styles.xml create mode 100644 android/app/src/main/res/xml/app_restrictions.xml create mode 100644 android/app/src/main/res/xml/network_security_config.xml create mode 100644 android/build.gradle create mode 100644 android/gradle.properties create mode 100644 android/gradle/wrapper/gradle-wrapper.jar create mode 100644 android/gradle/wrapper/gradle-wrapper.properties create mode 100755 android/gradlew create mode 100644 android/gradlew.bat create mode 100644 android/settings.gradle create mode 100644 app.json create mode 100644 app/constants/about_links.ts create mode 100644 app/constants/attachment.ts create mode 100644 app/constants/autocomplete.ts create mode 100644 app/constants/deep_linking.ts create mode 100644 app/constants/device.ts create mode 100644 app/constants/emoji.ts create mode 100644 app/constants/image.ts create mode 100644 app/constants/index.ts create mode 100644 app/constants/list.ts create mode 100644 app/constants/navigation.ts create mode 100644 app/constants/post_draft.ts create mode 100644 app/constants/preferences.ts create mode 100644 app/constants/reaction_picker.ts create mode 100644 app/constants/screens.ts create mode 100644 app/constants/view.ts create mode 100644 app/constants/websocket.ts create mode 100644 app/i18n/index.ts create mode 100644 app/init/analytics.ts create mode 100644 app/init/credentials.ts create mode 100644 app/init/device.ts create mode 100644 app/init/emm_provider.ts create mode 100644 app/init/global_event_handler.ts create mode 100644 app/init/push_notifications.ts create mode 100644 app/mattermost.ts create mode 100644 app/notifications/index.ios.ts create mode 100644 app/notifications/index.ts create mode 100644 app/screens/channel/index.tsx create mode 100644 app/screens/index.ts create mode 100644 app/screens/navigation.ts create mode 100644 app/screens/server/index.tsx create mode 100644 app/store/ephemeral_store.ts create mode 100644 app/utils/client_error.ts create mode 100644 app/utils/error_handling.ts create mode 100644 app/utils/file.ts create mode 100644 app/utils/font_family.js create mode 100644 app/utils/key_mirror.ts create mode 100644 app/utils/logging.ts create mode 100644 app/utils/security.ts create mode 100644 app/utils/sentry.ts create mode 100644 assets/base/compass-icons.json create mode 100644 assets/base/config.json create mode 100644 assets/base/i18n/de.json create mode 100644 assets/base/i18n/en.json create mode 100644 assets/base/i18n/es.json create mode 100644 assets/base/i18n/fr.json create mode 100644 assets/base/i18n/it.json create mode 100644 assets/base/i18n/ja.json create mode 100644 assets/base/i18n/ko.json create mode 100644 assets/base/i18n/nl.json create mode 100644 assets/base/i18n/pl.json create mode 100644 assets/base/i18n/pt-BR.json create mode 100644 assets/base/i18n/ro.json create mode 100644 assets/base/i18n/ru.json create mode 100644 assets/base/i18n/tr.json create mode 100644 assets/base/i18n/uk.json create mode 100644 assets/base/i18n/zh-CN.json create mode 100644 assets/base/i18n/zh-TW.json create mode 100644 assets/base/images/autocomplete/slash_command.png create mode 100644 assets/base/images/autocomplete/slash_command@2x.png create mode 100644 assets/base/images/autocomplete/slash_command@3x.png create mode 100644 assets/base/images/gitlab.png create mode 100644 assets/base/images/icon.png create mode 100644 assets/base/images/icons/youtube-play-icon.png create mode 100644 assets/base/images/themes/mattermost.png create mode 100644 assets/base/images/themes/mattermost@2x.png create mode 100644 assets/base/images/themes/mattermost@3x.png create mode 100644 assets/base/images/themes/mattermost_dark.png create mode 100644 assets/base/images/themes/mattermost_dark@2x.png create mode 100644 assets/base/images/themes/mattermost_dark@3x.png create mode 100644 assets/base/images/themes/organization.png create mode 100644 assets/base/images/themes/organization@2x.png create mode 100644 assets/base/images/themes/organization@3x.png create mode 100644 assets/base/images/themes/windows_dark.png create mode 100644 assets/base/images/themes/windows_dark@2x.png create mode 100644 assets/base/images/themes/windows_dark@3x.png create mode 100644 assets/base/images/thumb.png create mode 100644 assets/base/images/thumb@2x.png create mode 100644 assets/base/images/thumb@3x.png create mode 100644 assets/base/release/icons/android/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 assets/base/release/icons/android/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100755 assets/base/release/icons/android/mipmap-hdpi/ic_launcher.png create mode 100644 assets/base/release/icons/android/mipmap-hdpi/ic_launcher_background.png create mode 100644 assets/base/release/icons/android/mipmap-hdpi/ic_launcher_foreground.png create mode 100644 assets/base/release/icons/android/mipmap-hdpi/ic_launcher_round.png create mode 100644 assets/base/release/icons/android/mipmap-hdpi/ic_notification.png create mode 100755 assets/base/release/icons/android/mipmap-mdpi/ic_launcher.png create mode 100644 assets/base/release/icons/android/mipmap-mdpi/ic_launcher_background.png create mode 100644 assets/base/release/icons/android/mipmap-mdpi/ic_launcher_foreground.png create mode 100644 assets/base/release/icons/android/mipmap-mdpi/ic_launcher_round.png create mode 100644 assets/base/release/icons/android/mipmap-mdpi/ic_notification.png create mode 100755 assets/base/release/icons/android/mipmap-xhdpi/ic_launcher.png create mode 100644 assets/base/release/icons/android/mipmap-xhdpi/ic_launcher_background.png create mode 100644 assets/base/release/icons/android/mipmap-xhdpi/ic_launcher_foreground.png create mode 100644 assets/base/release/icons/android/mipmap-xhdpi/ic_launcher_round.png create mode 100644 assets/base/release/icons/android/mipmap-xhdpi/ic_notification.png create mode 100755 assets/base/release/icons/android/mipmap-xxhdpi/ic_launcher.png create mode 100644 assets/base/release/icons/android/mipmap-xxhdpi/ic_launcher_background.png create mode 100644 assets/base/release/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png create mode 100644 assets/base/release/icons/android/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 assets/base/release/icons/android/mipmap-xxhdpi/ic_notification.png create mode 100755 assets/base/release/icons/android/mipmap-xxxhdpi/ic_launcher.png create mode 100644 assets/base/release/icons/android/mipmap-xxxhdpi/ic_launcher_background.png create mode 100644 assets/base/release/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png create mode 100644 assets/base/release/icons/android/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 assets/base/release/icons/android/mipmap-xxxhdpi/ic_notification.png create mode 100644 assets/base/release/icons/ios/20.png create mode 100644 assets/base/release/icons/ios/20@2x.png create mode 100644 assets/base/release/icons/ios/20@3x.png create mode 100644 assets/base/release/icons/ios/29.png create mode 100644 assets/base/release/icons/ios/29@2x.png create mode 100644 assets/base/release/icons/ios/29@3x.png create mode 100644 assets/base/release/icons/ios/40.png create mode 100644 assets/base/release/icons/ios/40@2x.png create mode 100644 assets/base/release/icons/ios/40@3x.png create mode 100644 assets/base/release/icons/ios/76.png create mode 100644 assets/base/release/icons/ios/76@2x.png create mode 100644 assets/base/release/icons/ios/83.5@2x.png create mode 100644 assets/base/release/icons/ios/Icon-60@2x.png create mode 100644 assets/base/release/icons/ios/Icon-60@3x.png create mode 100644 assets/base/release/icons/ios/iTunesArtwork@2x.png create mode 100644 assets/base/release/splash_screen/android/drawable-hdpi/ic_notif_action_reply.png create mode 100755 assets/base/release/splash_screen/android/drawable-hdpi/splash.png create mode 100644 assets/base/release/splash_screen/android/drawable-mdpi/ic_notif_action_reply.png create mode 100755 assets/base/release/splash_screen/android/drawable-mdpi/splash.png create mode 100644 assets/base/release/splash_screen/android/drawable-xhdpi/ic_notif_action_reply.png create mode 100755 assets/base/release/splash_screen/android/drawable-xhdpi/splash.png create mode 100644 assets/base/release/splash_screen/android/drawable-xxhdpi/ic_notif_action_reply.png create mode 100755 assets/base/release/splash_screen/android/drawable-xxhdpi/splash.png create mode 100644 assets/base/release/splash_screen/android/drawable-xxxhdpi/ic_notif_action_reply.png create mode 100755 assets/base/release/splash_screen/android/drawable-xxxhdpi/splash.png create mode 100644 assets/base/release/splash_screen/android/layout/launch_screen.xml create mode 100644 assets/base/release/splash_screen/ios/LaunchScreen.storyboard create mode 100644 assets/base/release/splash_screen/ios/splash.png create mode 100755 assets/fonts/OpenSans-Bold.ttf create mode 100755 assets/fonts/OpenSans-BoldItalic.ttf create mode 100755 assets/fonts/OpenSans-ExtraBold.ttf create mode 100755 assets/fonts/OpenSans-ExtraBoldItalic.ttf create mode 100755 assets/fonts/OpenSans-Italic.ttf create mode 100755 assets/fonts/OpenSans-Light.ttf create mode 100755 assets/fonts/OpenSans-LightItalic.ttf create mode 100755 assets/fonts/OpenSans-Regular.ttf create mode 100755 assets/fonts/OpenSans-Semibold.ttf create mode 100755 assets/fonts/OpenSans-SemiboldItalic.ttf create mode 100644 assets/fonts/compass-icons.ttf create mode 100644 babel.config.js create mode 100644 detox/.babelrc create mode 100644 detox/.detoxrc.json create mode 100644 detox/e2e/config.js create mode 100644 detox/e2e/environment.js create mode 100644 detox/e2e/init.js create mode 100644 detox/e2e/path_builder.js create mode 100644 detox/e2e/support/fixtures/ldap_users.json create mode 100644 detox/e2e/support/server_api/channel.js create mode 100644 detox/e2e/support/server_api/client.js create mode 100644 detox/e2e/support/server_api/common.js create mode 100644 detox/e2e/support/server_api/default_config.json create mode 100644 detox/e2e/support/server_api/index.js create mode 100644 detox/e2e/support/server_api/ldap.js create mode 100644 detox/e2e/support/server_api/post.js create mode 100644 detox/e2e/support/server_api/setup.js create mode 100644 detox/e2e/support/server_api/system.js create mode 100644 detox/e2e/support/server_api/team.js create mode 100644 detox/e2e/support/server_api/user.js create mode 100644 detox/e2e/support/test_config.js create mode 100644 detox/e2e/support/utils.js create mode 100644 detox/package-lock.json create mode 100644 detox/package.json create mode 100644 docs/base_configs.md create mode 100644 env.d.ts create mode 100644 fastlane/Fastfile create mode 100644 fastlane/Gemfile create mode 100644 fastlane/Gemfile.lock create mode 100644 fastlane/Matchfile create mode 100644 fastlane/Pluginfile create mode 100644 fastlane/actions/android_commit_version_bump.rb create mode 100644 fastlane/actions/android_increment_version_code.rb create mode 100644 fastlane/actions/android_update_application_id.rb create mode 100644 fastlane/actions/mattermost.rb create mode 100644 fastlane/env_vars_example create mode 100644 fastlane/metadata/android/en-US/full_description.txt create mode 100755 fastlane/metadata/android/en-US/images/icon.png create mode 100644 fastlane/metadata/android/en-US/images/tvBanner.png create mode 100644 fastlane/metadata/android/en-US/short_description.txt create mode 100644 fastlane/metadata/android/en-US/title.txt create mode 100644 fastlane/metadata/android/en-US/video.txt create mode 100644 fastlane/metadata/changelog create mode 100644 fastlane/metadata/copyright.txt create mode 100644 fastlane/metadata/en-US/description.txt create mode 100644 fastlane/metadata/en-US/keywords.txt create mode 100644 fastlane/metadata/en-US/marketing_url.txt create mode 100644 fastlane/metadata/en-US/name.txt create mode 100644 fastlane/metadata/en-US/privacy_url.txt create mode 100644 fastlane/metadata/en-US/release_notes.txt create mode 100644 fastlane/metadata/en-US/support_url.txt create mode 100644 fastlane/metadata/primary_category.txt create mode 100644 fastlane/metadata/primary_first_sub_category.txt create mode 100644 fastlane/metadata/primary_second_sub_category.txt create mode 100644 fastlane/metadata/secondary_category.txt create mode 100644 fastlane/metadata/secondary_first_sub_category.txt create mode 100644 fastlane/metadata/secondary_second_sub_category.txt create mode 100644 fastlane/plist.erb create mode 100644 fastlane/screenshots/README.txt create mode 100644 index.ts create mode 100644 ios/Fonts/Entypo.ttf create mode 100644 ios/Fonts/EvilIcons.ttf create mode 100644 ios/Fonts/FontAwesome.ttf create mode 100644 ios/Fonts/Foundation.ttf create mode 100644 ios/Fonts/Ionicons.ttf create mode 100644 ios/Fonts/MaterialIcons.ttf create mode 100644 ios/Fonts/Octicons.ttf create mode 100644 ios/Fonts/Zocial.ttf create mode 100644 ios/Gemfile create mode 100644 ios/Gemfile.lock create mode 100644 ios/Mattermost.xcodeproj/project.pbxproj create mode 100644 ios/Mattermost.xcodeproj/xcshareddata/xcschemes/Mattermost.xcscheme create mode 100644 ios/Mattermost.xcodeproj/xcshareddata/xcschemes/MattermostShare.xcscheme create mode 100644 ios/Mattermost.xcodeproj/xcshareddata/xcschemes/NotificationService.xcscheme create mode 100644 ios/Mattermost.xcworkspace/contents.xcworkspacedata create mode 100644 ios/Mattermost.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 ios/Mattermost.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 ios/Mattermost/AppDelegate.h create mode 100644 ios/Mattermost/AppDelegate.m create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/20.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/20@2x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/20@3x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/29.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/29@2x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/29@3x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/40.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/40@2x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/40@3x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/76.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/76@2x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/83.5@2x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/Contents.json create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png create mode 100644 ios/Mattermost/Images.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png create mode 100644 ios/Mattermost/Info.plist create mode 100644 ios/Mattermost/Mattermost-Bridging-Header.h create mode 100644 ios/Mattermost/Mattermost.entitlements create mode 100644 ios/Mattermost/MattermostManaged.h create mode 100644 ios/Mattermost/MattermostManaged.m create mode 100644 ios/Mattermost/RNNotificationEventHandler+HandleReplyAction.h create mode 100644 ios/Mattermost/RNNotificationEventHandler+HandleReplyAction.m create mode 100644 ios/Mattermost/RuntimeUtils.swift create mode 100644 ios/Mattermost/SwimeProxy.swift create mode 100644 ios/Mattermost/UIImage+vImageScaling.h create mode 100644 ios/Mattermost/UIImage+vImageScaling.m create mode 100644 ios/Mattermost/main.m create mode 100644 ios/MattermostShare/Base.lproj/MainInterface.storyboard create mode 100644 ios/MattermostShare/ChannelsViewController.swift create mode 100644 ios/MattermostShare/Config.swift create mode 100644 ios/MattermostShare/GenericPreview.swift create mode 100644 ios/MattermostShare/GenericPreview.xib create mode 100644 ios/MattermostShare/Images/generic.png create mode 100644 ios/MattermostShare/Info.plist create mode 100644 ios/MattermostShare/Item.swift create mode 100644 ios/MattermostShare/MattermostShare-Bridging-Header.h create mode 100644 ios/MattermostShare/MattermostShare.entitlements create mode 100644 ios/MattermostShare/Section.swift create mode 100644 ios/MattermostShare/ShareViewController.swift create mode 100644 ios/MattermostShare/TeamsViewController.swift create mode 100644 ios/MattermostTests/Info.plist create mode 100644 ios/NotificationService/Info.plist create mode 100644 ios/NotificationService/NotificationService.entitlements create mode 100644 ios/NotificationService/NotificationService.swift create mode 100644 ios/Podfile create mode 100644 ios/Podfile.lock create mode 100644 ios/SplashScreenResource/LaunchScreen.storyboard create mode 100644 ios/SplashScreenResource/splash.png create mode 100644 ios/UploadAttachments/UploadAttachments.xcodeproj/project.pbxproj create mode 100644 ios/UploadAttachments/UploadAttachments.xcodeproj/xcshareddata/xcschemes/UploadAttachments.xcscheme create mode 100644 ios/UploadAttachments/UploadAttachments/AttachmentArray.swift create mode 100644 ios/UploadAttachments/UploadAttachments/AttachmentItem.swift create mode 100644 ios/UploadAttachments/UploadAttachments/MMKeychainManager.h create mode 100644 ios/UploadAttachments/UploadAttachments/MMKeychainManager.m create mode 100644 ios/UploadAttachments/UploadAttachments/MMMConstants.h create mode 100644 ios/UploadAttachments/UploadAttachments/MMMConstants.m create mode 100644 ios/UploadAttachments/UploadAttachments/MattermostBucket.h create mode 100644 ios/UploadAttachments/UploadAttachments/MattermostBucket.m create mode 100644 ios/UploadAttachments/UploadAttachments/StoreManager.h create mode 100644 ios/UploadAttachments/UploadAttachments/StoreManager.m create mode 100644 ios/UploadAttachments/UploadAttachments/UploadAttachments-Bridging-Header.h create mode 100644 ios/UploadAttachments/UploadAttachments/UploadManager.swift create mode 100644 ios/UploadAttachments/UploadAttachments/UploadSession.swift create mode 100644 ios/UploadAttachments/UploadAttachments/UploadSessionManager.swift create mode 100755 ios/bundleReactNative.sh create mode 100755 ios/makeSentryProperties.sh create mode 100755 ios/react-native-xcode.sh create mode 100755 ios/uploadDebugSymbols.sh create mode 100644 jest.config.js create mode 100644 jsconfig.json create mode 100644 metro.config.js create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 packager/generateModulePaths.js create mode 100644 packager/moduleNames.js create mode 100644 packager/modules.ios.js create mode 100644 patches/react-native+0.63.3.patch create mode 100644 patches/react-native-device-info+7.0.2.patch create mode 100644 patches/react-native-elements+2.3.2.patch create mode 100644 patches/react-native-fast-image+8.3.4.patch create mode 100644 patches/react-native-haptic-feedback+1.11.0.patch create mode 100644 patches/react-native-image-picker+2.3.4.patch create mode 100644 patches/react-native-keyboard-tracking-view+5.7.0.patch create mode 100644 patches/react-native-navigation+7.3.0.patch create mode 100644 patches/react-native-notifications+3.4.0.patch create mode 100644 patches/react-native-vector-icons+7.1.0.patch create mode 100644 patches/react-native-youtube+2.0.1.patch create mode 100644 react-native.config.js create mode 100755 scripts/build.sh create mode 100755 scripts/clean.sh create mode 100644 scripts/generate-assets.js create mode 100755 scripts/postinstall.sh create mode 100755 scripts/pre-commit.sh create mode 100755 scripts/precommit/i18n.sh create mode 100644 share_extension/index.tsx create mode 100644 storybook/addons.ts create mode 100644 storybook/index.ts create mode 100644 storybook/mattermost_storybook.ts create mode 100644 storybook/storyLoader.js create mode 100644 tsconfig.json create mode 100644 tsconfig.test.json create mode 100644 types/api/client_error.d.ts create mode 100644 types/api/config.d.ts create mode 100644 types/global/error_handling.d.ts create mode 100644 types/global/global_event_handler.d.ts create mode 100644 types/global/native_notifications.d.ts create mode 100644 types/global/preferences.d.ts create mode 100644 types/global/push_notifications.d.ts create mode 100644 types/global/telemetry.d.ts create mode 100644 types/global/utilities.d.ts create mode 100644 types/modules/react-native-slider.d.ts create mode 100644 types/screens/gallery.d.ts diff --git a/.buckconfig b/.buckconfig new file mode 100644 index 0000000000..934256cb29 --- /dev/null +++ b/.buckconfig @@ -0,0 +1,6 @@ + +[android] + target = Google Inc.:Google APIs:23 + +[maven_repositories] + central = https://repo1.maven.org/maven2 diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000000..a269a70814 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,600 @@ +version: 2.1 +orbs: + owasp: entur/owasp@0.0.10 + +executors: + android: + parameters: + resource_class: + default: large + type: string + environment: + NODE_OPTIONS: --max_old_space_size=12000 + NODE_ENV: production + BABEL_ENV: production + docker: + - image: circleci/android:api-29-node + working_directory: ~/mattermost-mobile + resource_class: <> + + ios: + environment: + NODE_OPTIONS: --max_old_space_size=12000 + NODE_ENV: production + BABEL_ENV: production + macos: + xcode: "12.0.0" + working_directory: ~/mattermost-mobile + shell: /bin/bash --login -o pipefail + +commands: + checkout-private: + description: "Checkout the private repo with build env vars" + steps: + - add_ssh_keys: + fingerprints: + - "59:4d:99:5e:1c:6d:30:36:6d:60:76:88:ff:a7:ab:63" + - run: + name: Clone the mobile private repo + command: git clone git@github.com:mattermost/mattermost-mobile-private.git ~/mattermost-mobile-private + + fastlane-dependencies: + description: "Get Fastlane dependencies" + parameters: + for: + type: string + steps: + - restore_cache: + name: Restore Fastlane cache + key: v1-gems-<< parameters.for >>-{{ checksum "fastlane/Gemfile.lock" }}-{{ arch }} + - run: + working_directory: fastlane + name: Download Fastlane dependencies + command: bundle install --path vendor/bundle + - save_cache: + name: Save Fastlane cache + key: v1-gems-<< parameters.for >>-{{ checksum "fastlane/Gemfile.lock" }}-{{ arch }} + paths: + - fastlane/vendor/bundle + + gradle-dependencies: + description: "Get Gradle dependencies" + steps: + - restore_cache: + name: Restore Gradle cache + key: v1-gradle-{{ checksum "android/build.gradle" }}-{{ checksum "android/app/build.gradle" }} + - run: + working_directory: android + name: Download Gradle dependencies + command: ./gradlew dependencies + - save_cache: + name: Save Gradle cache + paths: + - ~/.gradle + key: v1-gradle-{{ checksum "android/build.gradle" }}-{{ checksum "android/app/build.gradle" }} + + assets: + description: "Generate app assets" + steps: + - restore_cache: + name: Restore assets cache + key: v1-assets-{{ checksum "assets/base/config.json" }}-{{ arch }} + - run: + name: Generate assets + command: node ./scripts/generate-assets.js + - save_cache: + name: Save assets cache + key: v1-assets-{{ checksum "assets/base/config.json" }}-{{ arch }} + paths: + - dist + + npm-dependencies: + description: "Get JavaScript dependencies" + steps: + - restore_cache: + name: Restore npm cache + key: v2-npm-{{ checksum "package.json" }}-{{ arch }} + - run: + name: Getting JavaScript dependencies + command: NODE_ENV=development npm install --ignore-scripts + - save_cache: + name: Save npm cache + key: v2-npm-{{ checksum "package.json" }}-{{ arch }} + paths: + - node_modules + - run: + name: "Patch dependencies" + command: npx patch-package + + pods-dependencies: + description: "Get cocoapods dependencies" + steps: + - restore_cache: + name: Restore cocoapods specs and pods + key: v1-cocoapods-{{ checksum "ios/Podfile.lock" }}-{{ arch }} + - run: + name: iOS gems + command: npm run ios-gems + - run: + name: Getting cocoapods dependencies + command: npm run pod-install + - save_cache: + name: Save cocoapods specs and pods cache + key: v1-cocoapods-{{ checksum "ios/Podfile.lock" }}-{{ arch }} + paths: + - ios/Pods + - ~/.cocoapods + + build-android: + description: "Build the android app" + steps: + - checkout: + path: ~/mattermost-mobile + - checkout-private + - npm-dependencies + - assets + - fastlane-dependencies: + for: android + - gradle-dependencies + - run: + name: Append Keystore to build Android + command: | + cp ~/mattermost-mobile-private/android/${STORE_FILE} android/app/${STORE_FILE} + echo "" | tee -a android/gradle.properties > /dev/null + echo MATTERMOST_RELEASE_STORE_FILE=${STORE_FILE} | tee -a android/gradle.properties > /dev/null + echo ${STORE_ALIAS} | tee -a android/gradle.properties > /dev/null + echo ${STORE_PASSWORD} | tee -a android/gradle.properties > /dev/null + - run: + name: Jetify android libraries + command: ./node_modules/.bin/jetify + - run: + working_directory: fastlane + name: Run fastlane to build android + no_output_timeout: 30m + command: export TERM=xterm && bundle exec fastlane android build + + build-ios: + description: "Build the iOS app" + steps: + - checkout: + path: ~/mattermost-mobile + - npm-dependencies + - pods-dependencies + - assets + - fastlane-dependencies: + for: ios + - run: + working_directory: fastlane + name: Run fastlane to build iOS + no_output_timeout: 30m + command: | + HOMEBREW_NO_AUTO_UPDATE=1 brew install watchman + export TERM=xterm && bundle exec fastlane ios build + + deploy-to-store: + description: "Deploy build to store" + parameters: + task: + type: string + target: + type: string + file: + type: string + steps: + - attach_workspace: + at: ~/ + - run: + name: <> + working_directory: fastlane + command: bundle exec fastlane <> deploy file:$HOME/mattermost-mobile/<> + + persist: + description: "Persist mattermost-mobile directory" + steps: + - persist_to_workspace: + root: ~/ + paths: + - mattermost-mobile* + + save: + description: "Save binaries artifacts" + parameters: + filename: + type: string + steps: + - run: + name: Copying artifacts + command: | + mkdir /tmp/artifacts; + cp ~/mattermost-mobile/<> /tmp/artifacts; + - store_artifacts: + path: /tmp/artifacts + +jobs: + test: + working_directory: ~/mattermost-mobile + docker: + - image: circleci/node:10 + steps: + - checkout: + path: ~/mattermost-mobile + - npm-dependencies + - assets + - run: + name: Check styles + command: npm run check + - run: + name: Running Tests + command: npm test + - run: + name: Check i18n + command: ./scripts/precommit/i18n.sh + + check-deps: + parameters: + cve_data_directory: + type: string + default: "~/.owasp/dependency-check-data" + working_directory: ~/mattermost-mobile + executor: owasp/default + environment: + version_url: "https://jeremylong.github.io/DependencyCheck/current.txt" + executable_url: "https://dl.bintray.com/jeremy-long/owasp/dependency-check-VERSION-release.zip" + steps: + - checkout + - restore_cache: + name: Restore npm cache + key: v2-npm-{{ checksum "package.json" }}-{{ arch }} + - run: + name: Checkout config + command: cd .. && git clone https://github.com/mattermost/security-automation-config + - run: + name: Install Go + command: sudo apt-get update && sudo apt-get install golang + - owasp/with_commandline: + steps: + # Taken from https://github.com/entur/owasp-orb/blob/master/src/%40orb.yml#L349-L361 + - owasp/generate_cache_keys: + cache_key: commmandline-default-cache-key-v6 + - owasp/restore_owasp_cache + - run: + name: Update OWASP Dependency-Check Database + command: | + if ! ~/.owasp/dependency-check/bin/dependency-check.sh --data << parameters.cve_data_directory >> --updateonly; then + # Update failed, probably due to a bad DB version; delete cached DB and try again + rm -rv ~/.owasp/dependency-check-data/*.db + ~/.owasp/dependency-check/bin/dependency-check.sh --data << parameters.cve_data_directory >> --updateonly + fi + - owasp/store_owasp_cache: + cve_data_directory: <> + - run: + name: Run OWASP Dependency-Check Analyzer + command: | + ~/.owasp/dependency-check/bin/dependency-check.sh \ + --data << parameters.cve_data_directory >> --format ALL --noupdate --enableExperimental \ + --propertyfile ../security-automation-config/dependency-check/dependencycheck.properties \ + --suppression ../security-automation-config/dependency-check/suppression.xml \ + --suppression ../security-automation-config/dependency-check/suppression.$CIRCLE_PROJECT_REPONAME.xml \ + --scan './**/*' || true + - owasp/collect_reports: + persist_to_workspace: false + - run: + name: Post results to Mattermost + command: go run ../security-automation-config/dependency-check/post_results.go + + build-android-beta: + executor: android + steps: + - build-android + - persist + - save: + filename: "*.apk" + + build-android-release: + executor: android + steps: + - build-android + - persist + - save: + filename: "*.apk" + + build-android-pr: + executor: android + environment: + BRANCH_TO_BUILD: ${CIRCLE_BRANCH} + steps: + - build-android + - save: + filename: "*.apk" + + build-android-unsigned: + executor: android + steps: + - checkout: + path: ~/mattermost-mobile + - npm-dependencies + - assets + - fastlane-dependencies: + for: android + - gradle-dependencies + - run: + name: Jetify Android libraries + command: ./node_modules/.bin/jetify + - run: + working_directory: fastlane + name: Run fastlane to build unsigned android + no_output_timeout: 30m + command: bundle exec fastlane android unsigned + - persist + - save: + filename: "*.apk" + + build-ios-beta: + executor: ios + steps: + - build-ios + - persist + - save: + filename: "*.ipa" + + build-ios-release: + executor: ios + steps: + - build-ios + - persist + - save: + filename: "*.ipa" + + build-ios-pr: + executor: ios + environment: + BRANCH_TO_BUILD: ${CIRCLE_BRANCH} + steps: + - build-ios + - save: + filename: "*.ipa" + + build-ios-unsigned: + executor: ios + steps: + - checkout: + path: ~/mattermost-mobile + - npm-dependencies + - pods-dependencies + - assets + - fastlane-dependencies: + for: ios + - run: + working_directory: fastlane + name: Run fastlane to build unsigned iOS + no_output_timeout: 30m + command: | + HOMEBREW_NO_AUTO_UPDATE=1 brew install watchman + bundle exec fastlane ios unsigned + - persist_to_workspace: + root: ~/ + paths: + - mattermost-mobile/*.ipa + - save: + filename: "*.ipa" + + build-ios-simulator: + executor: ios + steps: + - checkout: + path: ~/mattermost-mobile + - npm-dependencies + - pods-dependencies + - assets + - fastlane-dependencies: + for: ios + - run: + working_directory: fastlane + name: Run fastlane to build unsigned x86_64 iOS app for iPhone simulator + no_output_timeout: 30m + command: | + HOMEBREW_NO_AUTO_UPDATE=1 brew install watchman + bundle exec fastlane ios simulator + - persist_to_workspace: + root: ~/ + paths: + - mattermost-mobile/Mattermost-simulator-x86_64.app.zip + - save: + filename: "Mattermost-simulator-x86_64.app.zip" + + deploy-android-release: + executor: + name: android + resource_class: medium + steps: + - deploy-to-store: + task: "Deploy to Google Play" + target: android + file: "*.apk" + + deploy-android-beta: + executor: + name: android + resource_class: medium + steps: + - deploy-to-store: + task: "Deploy to Google Play" + target: android + file: "*.apk" + + deploy-ios-release: + executor: ios + steps: + - deploy-to-store: + task: "Deploy to TestFlight" + target: ios + file: "*.ipa" + + deploy-ios-beta: + executor: ios + steps: + - deploy-to-store: + task: "Deploy to TestFlight" + target: ios + file: "*.ipa" + + github-release: + executor: + name: android + resource_class: medium + steps: + - attach_workspace: + at: ~/ + - run: + name: Create GitHub release + working_directory: fastlane + command: bundle exec fastlane github + +workflows: + version: 2 + build: + jobs: + - test + - check-deps: + context: sast-webhook + requires: + - test + + - build-android-release: + context: mattermost-mobile-android-release + requires: + - test + filters: + branches: + only: + - /^build-\d+$/ + - /^build-android-\d+$/ + - /^build-android-release-\d+$/ + - deploy-android-release: + context: mattermost-mobile-android-release + requires: + - build-android-release + filters: + branches: + only: + - /^build-\d+$/ + - /^build-android-\d+$/ + - /^build-android-release-\d+$/ + + - build-android-beta: + context: mattermost-mobile-android-beta + requires: + - test + filters: + branches: + only: + - /^build-\d+$/ + - /^build-android-\d+$/ + - /^build-android-beta-\d+$/ + - deploy-android-beta: + context: mattermost-mobile-android-beta + requires: + - build-android-beta + filters: + branches: + only: + - /^build-\d+$/ + - /^build-android-\d+$/ + - /^build-android-beta-\d+$/ + + - build-ios-release: + context: mattermost-mobile-ios-release + requires: + - test + filters: + branches: + only: + - /^build-\d+$/ + - /^build-ios-\d+$/ + - /^build-ios-release-\d+$/ + - deploy-ios-release: + context: mattermost-mobile-ios-release + requires: + - build-ios-release + filters: + branches: + only: + - /^build-\d+$/ + - /^build-ios-\d+$/ + - /^build-ios-release-\d+$/ + + - build-ios-beta: + context: mattermost-mobile-ios-beta + requires: + - test + filters: + branches: + only: + - /^build-\d+$/ + - /^build-ios-\d+$/ + - /^build-ios-beta-\d+$/ + - deploy-ios-beta: + context: mattermost-mobile-ios-beta + requires: + - build-ios-beta + filters: + branches: + only: + - /^build-\d+$/ + - /^build-ios-\d+$/ + - /^build-ios-beta-\d+$/ + + - build-android-pr: + context: mattermost-mobile-android-pr + requires: + - test + filters: + branches: + only: /^build-pr-.*/ + - build-ios-pr: + context: mattermost-mobile-ios-pr + requires: + - test + filters: + branches: + only: /^build-pr-.*/ + + - build-android-unsigned: + context: mattermost-mobile-unsigned + requires: + - test + filters: + tags: + only: /^v(\d+\.)(\d+\.)(\d+)(.*)?$/ + branches: + only: unsigned + - build-ios-unsigned: + context: mattermost-mobile-unsigned + requires: + - test + filters: + tags: + only: /^v(\d+\.)(\d+\.)(\d+)(.*)?$/ + branches: + only: unsigned + - build-ios-simulator: + context: mattermost-mobile-unsigned + requires: + - test + filters: + branches: + only: + - /^build-\d+$/ + - /^build-ios-\d+$/ + - /^build-ios-beta-\d+$/ + + - github-release: + context: mattermost-mobile-unsigned + requires: + - build-android-unsigned + - build-ios-unsigned + filters: + tags: + only: /^v(\d+\.)(\d+\.)(\d+)(.*)?$/ + branches: + only: unsigned diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..be3c347761 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# http://editorconfig.org/ + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +[*.{js,jsx,json,html}] +indent_style = space +indent_size = 4 + +[{package.json,.eslintrc.json}] +indent_size = 2 + +[Makefile] +indent_style = tab diff --git a/.env b/.env new file mode 100644 index 0000000000..be80b9ea5c --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +STORYBOOK_PORT= +STORYBOOK_HOST= diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000000..d97204ec39 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,75 @@ +{ + "extends": [ + "plugin:mattermost/react", + "plugin:@typescript-eslint/eslint-recommended", + "plugin:@typescript-eslint/recommended" + ], + "parser": "@typescript-eslint/parser", + "plugins": [ + "mattermost", + "@typescript-eslint" + ], + "settings": { + "react": { + "pragma": "React", + "version": "16.5" + } + }, + "env": { + "jest": true + }, + "globals": { + "__DEV__": true + }, + "rules": { + "global-require": 0, + "no-undefined": 0, + "react/display-name": [2, { "ignoreTranspilerName": false }], + "react/jsx-filename-extension": 0, + "camelcase": [ + 0, + { + "properties": "never" + } + ], + "@typescript-eslint/ban-types": 0, + "@typescript-eslint/no-non-null-assertion": 0, + "@typescript-eslint/no-unused-vars": [ + 2, + { + "vars": "all", + "args": "after-used" + } + ], + "@typescript-eslint/no-explicit-any": "warn", + "@typescript-eslint/no-use-before-define": 0, + "@typescript-eslint/no-var-requires": 0, + "@typescript-eslint/explicit-function-return-type": 0, + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.test.js", "*.test.jsx"], + "env": { + "jest": true + } + }, + { + "files": ["detox/e2e/**"], + "globals": { + "by": true, + "detox": true, + "device": true, + "element": true, + "waitFor": true + }, + "rules": { + "func-names": 0, + "import/no-unresolved": 0, + "max-nested-callbacks": 0, + "no-process-env": 0, + "no-unused-expressions": 0 + } + } + ] +} diff --git a/.flowconfig b/.flowconfig new file mode 100644 index 0000000000..757564ae8c --- /dev/null +++ b/.flowconfig @@ -0,0 +1,74 @@ +[ignore] +; We fork some components by platform +.*/*[.]android.js + +; Ignore "BUCK" generated dirs +/\.buckd/ + +; Ignore polyfills +node_modules/react-native/Libraries/polyfills/.* + +; These should not be required directly +; require from fbjs/lib instead: require('fbjs/lib/warning') +node_modules/warning/.* + +; Flow doesn't support platforms +.*/Libraries/Utilities/LoadingView.js + +[untyped] +.*/node_modules/@react-native-community/cli/.*/.* + +[include] + +[libs] +node_modules/react-native/interface.js +node_modules/react-native/flow/ + +[options] +emoji=true + +esproposal.optional_chaining=enable +esproposal.nullish_coalescing=enable + +module.file_ext=.js +module.file_ext=.json +module.file_ext=.ios.js + +munge_underscores=true + +module.name_mapper='^react-native/\(.*\)$' -> '/node_modules/react-native/\1' +module.name_mapper='^@?[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> '/node_modules/react-native/Libraries/Image/RelativeImageStub' + +suppress_type=$FlowIssue +suppress_type=$FlowFixMe +suppress_type=$FlowFixMeProps +suppress_type=$FlowFixMeState + +suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\) +suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)?:? #[0-9]+ +suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError + +[lints] +sketchy-null-number=warn +sketchy-null-mixed=warn +sketchy-number=warn +untyped-type-import=warn +nonstrict-import=warn +deprecated-type=warn +unsafe-getters-setters=warn +inexact-spread=warn +unnecessary-invariant=warn +signature-verification-failure=warn +deprecated-utility=error + +[strict] +deprecated-type +nonstrict-import +sketchy-null +unclear-type +unsafe-getters-setters +untyped-import +untyped-type-import + +[version] +^0.122.0 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..5b83976373 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +*.pbxproj -text + +# specific for windows script files +*.bat text eol=crlf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..8871c61708 --- /dev/null +++ b/.gitignore @@ -0,0 +1,103 @@ +assets/override +dist +build-ios +*.zip +server.PID +mattermost.keystore +tmp/ +.env +env.d.ts + +# OSX +# +.DS_Store + +# Xcode +# +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.apk +*.xcuserstate +project.xcworkspace +ios/Pods +.podinstall + +# Android/IntelliJ +# +.idea +.gradle +local.properties +*.iml +android/app/bin +.settings +.project +.classpath + +# node.js +# +node_modules/ +npm-debug.log +.npminstall +yarn-error.log +.yarninstall + +# BUCK +buck-out/ +\.buckd/ +android/app/libs +*.keystore + +# Vim +[._]*.s[a-w][a-z] +[._]s[a-w][a-z] +*.un~ +Session.vim +.netrwhist +*~ +tags + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/ + +*/fastlane/report.xml +*/fastlane/Preview.html +*/fastlane/screenshots +fastlane/.env +fastlane/report.xml + +# Sentry +android/sentry.properties +ios/sentry.properties + +# Testing +.nyc_output +coverage +.tmp + +# E2E testing +mattermost-license.txt +*.mattermost-license +detox/artifacts + +# Bundle artifact +*.jsbundle + +#editor-settings +.vscode diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000000..cffe8cdef1 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +save-exact=true diff --git a/.storybook/main.js b/.storybook/main.js new file mode 100644 index 0000000000..e1b5e76404 --- /dev/null +++ b/.storybook/main.js @@ -0,0 +1,6 @@ +module.exports = { + "stories": [ + "../app/components/**/*.stories.mdx", + "../app/components/**/*.stories.@(js|jsx|ts|tsx)" + ], +} diff --git a/.storybook/preview.js b/.storybook/preview.js new file mode 100644 index 0000000000..efbcb217c6 --- /dev/null +++ b/.storybook/preview.js @@ -0,0 +1,5 @@ + +export const parameters = { + actions: { argTypesRegex: "^on[A-Z].*" }, +} + diff --git a/.watchmanconfig b/.watchmanconfig new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/.watchmanconfig @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..c2d6d59ed8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1 @@ +The Mobile App changelog has moved to the [Admin Documentation](https://docs.mattermost.com/administration/mobile-changelog.html). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000000..32cd04b588 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,5 @@ +# Code Contribution Guidelines + +Thank you for your interest in contributing! Please see the [Mattermost Contribution Guide](https://developers.mattermost.com/contribute/getting-started/) which describes the process for making code contributions across Mattermost projects and [join our "Native Mobile Apps" community channel](https://pre-release.mattermost.com/core/channels/native-mobile-apps) to ask questions from community members and the Mattermost core team. + +When you submit a pull request, it goes through a [code review process outlined here](https://developers.mattermost.com/contribute/getting-started/code-review/). diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md new file mode 100644 index 0000000000..3065d8f3d1 --- /dev/null +++ b/ISSUE_TEMPLATE.md @@ -0,0 +1,23 @@ +Submit feature requests to http://www.mattermost.org/feature-requests/. File non-security related bugs here in the following format: + +#### Summary +Issue in one concise sentence. + +#### Environment Information + +- Device Name: +- OS Version: +- Mattermost App Version: +- Mattermost Server Version: + +#### Steps to reproduce +How can we reproduce the issue? + +#### Expected behavior +Describe your issue in detail. + +#### Observed behavior +What did you see happen? Please include relevant error messages and/or screenshots. + +#### Possible fixes +If you can, link to the line of code that might be responsible for the problem. diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000000..be4c38658d --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,203 @@ +Copyright 2015-present Mattermost, Inc. + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/NOTICE.txt b/NOTICE.txt new file mode 100644 index 0000000000..149c2ecc1f --- /dev/null +++ b/NOTICE.txt @@ -0,0 +1,3171 @@ +Mattermost Mobile +© 2016-present Mattermost, Inc. All Rights Reserved. See LICENSE.txt for license information. + +NOTICES: +-------- + +This document includes a list of open source components used in Mattermost Mobile, including those that have been modified. + +-------- +## @babel/runtime + +This product contains 'runtime' by Sebastian McKenzie. + +babel's modular runtime helpers + +* HOMEPAGE: + * https://github.com/babel/babel/tree/master/packages/babel-runtime + +* LICENSE: MIT + +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## @react-native-community/async-storage + +This product contains 'async-storage' by Krzysztof Borowy. + +Asynchronous, persistent, key-value storage system for React Native. + +* HOMEPAGE: + * https://github.com/react-native-community/react-native-async-storage#readme + +* LICENSE: MIT + +MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## @react-native-community/cameraroll + +This product contains 'cameraroll' by Bartol Karuza. + +React-native native module that provides access to the local camera roll or photo library + +* HOMEPAGE: + * https://github.com/react-native-community/react-native-cameraroll + +* LICENSE: MIT + +MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## @react-native-community/clipboard + +This product contains '@react-native-community/clipboard' by React Native Community. + +React Native Clipboard API for both iOS and Android + +* HOMEPAGE: + * https://github.com/react-native-community/clipboard + +* LICENSE: MIT + +MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## @react-native-community/masked-view + +This product contains '@react-native-community/masked-view' by React Native Community. + +React Native Masked View Library + +* HOMEPAGE: + * https://github.com/react-native-community/react-native-masked-view + +* LICENSE: MIT + +--- + +## @react-native-community/netinfo + +This product contains 'netinfo' by Matt Oakes. + +React Native Network Info API for iOS & Android + +* HOMEPAGE: + * https://github.com/react-native-community/react-native-netinfo#readme + +* LICENSE: MIT + +MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## @react-navigation/native + +This product contains 'react-navigation' by Adam Miskiewicz. + +Routing and navigation for your React Native apps + +* HOMEPAGE: + * https://github.com/react-navigation/react-navigation#readme + +* LICENSE: BSD-2-Clause + +BSD License + +For React Navigation software + +Copyright (c) 2016-present, React Navigation Contributors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- + +## @react-navigation/stack + +This product contains 'react-navigation-stack' by react-navigation. + +Stack navigator for React Navigation + +* HOMEPAGE: + * https://github.com/react-navigation/stack + +* LICENSE: MIT + +MIT License + +Copyright (c) 2017 React Native Community + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## rudder-sdk-react-native + +This product contains 'rudder-sdk-react-native' by Rudder Labs + +Rudder is an open-source Segment alternative written in Go, built for the enterprise. + +* HOMEPAGE: + * https://github.com/rudderlabs/rudder-sdk-react-native + +* LICENSE: Apache-2.0 + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2019 Rudderlabs + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +--- + +## @sentry/react-native + +This product contains 'react-native-sentry' by Sentry. + +Official Sentry SDK for react-native + +* HOMEPAGE: + * https://github.com/getsentry/react-native-sentry + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2017 Sentry + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## analytics-react-native + +This product contains a modified version of 'analytics-react-native' by Segment. + +The hassle-free way to add analytics to your React-Native app. + +* HOMEPAGE: + * https://github.com/segmentio/analytics-react-native + +* LICENSE: The MIT License (MIT) + +Copyright (c) 2018 Segment.io, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## commonmark + +This product contains a modified version of 'commonmark' by John MacFarlane. + +a strongly specified, highly compatible variant of Markdown + +* HOMEPAGE: + * http://commonmark.org + +* LICENSE: BSD-2-Clause + +Copyright (c) 2014, John MacFarlane + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- + +lib/normalize-reference.js is a slightly modified version of +https://github.com/dmoscrop/fold-case: + +Copyright Mathias Bynens + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +lib/from-code-point.js is derived from a polyfill +Copyright Mathias Bynens + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +bench/samples/*.md: + +With the exception of `bench/samples/README.md`, the samples in +`bench/samples` are taken from https://github.com/markdown-it/markdown-it. + +Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin. + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +--- + +The CommonMark spec (spec.txt) in test/ is + +Copyright (C) 2014-15 John MacFarlane + +Released under the Creative Commons CC-BY-SA 4.0 license: +. + +--- + +## commonmark-react-renderer + +This product contains a modified version of 'commonmark-react-renderer' by Espen Hovlandsdal. + +React renderer for CommonMark (rationalized Markdown) + +* HOMEPAGE: + * https://github.com/rexxars/commonmark-react-renderer#readme + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 Espen Hovlandsdal + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## core-js + +This product contains 'core-js' by Denis Pushkarev. + +Modular standard library for JavaScript. + +* HOMEPAGE: + * https://github.com/zloirock/core-js + +* LICENSE: Copyright (c) 2014-2019 Denis Pushkarev + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +--- + +## deep-equal + +This product contains 'deep-equal' by James Halliday. + +node's assert.deepEqual algorithm + +* HOMEPAGE: + * https://github.com/substack/node-deep-equal#readme + +* LICENSE: MIT + +This software is released under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## deepmerge + +This product contains 'deepmerge' by Josh Duff. + +A library for deep (recursive) merging of Javascript objects. + +* HOMEPAGE: + * https://github.com/TehShrike/deepmerge + +* LICENSE: The MIT License (MIT) + +Copyright (c) 2012 James Halliday, Josh Duff, and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +--- + +## emoji-regex + +This product contains 'emoji-regex' by Mathias Bynens. + +A regular expression to match all Emoji-only symbols as per the Unicode Standard. + +* HOMEPAGE: + * https://mths.be/emoji-regex + +* LICENSE: MIT + +MIT License + +Copyright Mathias Bynens + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## form-data + +This product contains 'form-data' by form-data. + +A module to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications. + +* HOMEPAGE: + * https://github.com/form-data/form-data + +* LICENSE: MIT + +Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + +--- + +## fuse.js + +This product contains 'fuse.js' by Kirollos Risk. + +Lightweight fuzzy-search + +* HOMEPAGE: + * http://fusejs.io + +* LICENSE: Apache-2.0 + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2017 Kirollos Risk + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--- + +## intl + +This product contains 'intl' by Andy Earnshaw. + +Polyfill the ECMA-402 Intl API (except collation) + +* HOMEPAGE: + * https://github.com/andyearnshaw/Intl.js#readme + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2013 Andy Earnshaw + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +------------------------------------------------------------------------------ +Contents of the `locale-data` directory are a modified form of the Unicode CLDR +data found at http://www.unicode.org/cldr/data/. It comes with the following +license. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1991-2013 Unicode, Inc. All rights reserved. Distributed under +the Terms of Use in http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +the Unicode data files and any associated documentation (the "Data Files") or +Unicode software and any associated documentation (the "Software") to deal in +the Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell copies +of the Data Files or Software, and to permit persons to whom the Data Files or +Software are furnished to do so, provided that (a) the above copyright +notice(s) and this permission notice appear with all copies of the Data Files +or Software, (b) both the above copyright notice(s) and this permission notice +appear in associated documentation, and (c) there is clear notice in each +modified Data File or in the Software as well as in the documentation +associated with the Data File(s) or Software that the data or software has been +modified. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD +PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN +THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING +OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR +SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall not be +used in advertising or otherwise to promote the sale, use or other dealings in +these Data Files or Software without prior written authorization of the +copyright holder. + +Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United +States and other countries. All third party trademarks referenced herein are +the property of their respective owners. + +--- + +## jail-monkey + +This product contains 'jail-monkey' by Gant Laborde. + +A React Native module for identifying jail-broken, rooted, or mock locations on iOS and Android + +* HOMEPAGE: + * https://github.com/GantMan/jail-monkey#readme + +* LICENSE: MIT + +MIT License + +Copyright (c) 2017 Gant Laborde + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## mime-db + +This product contains 'mime-db' by Douglas Christopher Wilson. + +Media Type Database + +* HOMEPAGE: + * https://github.com/jshttp/mime-db#readme + +* LICENSE: MIT + + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +--- + +## moment-timezone + +This product contains 'moment-timezone' by Tim Wood. + +Parse and display moments in any timezone. + +* HOMEPAGE: + * http://momentjs.com/timezone/ + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) JS Foundation and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## prop-types + +This product contains 'prop-types' by Facebook. + +Runtime type checking for React props and similar objects. + +* HOMEPAGE: + * https://facebook.github.io/react/ + +* LICENSE: MIT + +MIT License + +Copyright (c) 2013-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react + +This product contains 'react' by Facebook. + +React is a JavaScript library for building user interfaces. + +* HOMEPAGE: + * https://reactjs.org/ + +* LICENSE: MIT + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-intl + +This product contains 'react-intl' by Eric Ferraiuolo. + +Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations. + +* HOMEPAGE: + * https://github.com/yahoo/react-intl + +* LICENSE: BSD-3-Clause + +Copyright 2014 Yahoo Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the name of the Yahoo Inc. nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- + +## react-native + +This product contains 'react-native' by Facebook. + +A framework for building native apps using React + +* HOMEPAGE: + * https://github.com/facebook/react-native#readme + +* LICENSE: MIT + +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-android-open-settings + +This product contains 'react-native-android-open-settings' by Leonardo Velasquez. + +Open Android settings from your React Native app + +* HOMEPAGE: + * https://github.com/levelasquez/react-native-android-open-settings + +* LICENSE: ISC + +--- + +## react-native-animatable + +This product contains 'react-native-animatable' by Joel Arvidsson. + +Easy to use declarative transitions and animations for React Native + +* HOMEPAGE: + * https://github.com/oblador/react-native-animatable + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 Joel Arvidsson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-button + +This product contains 'react-native-button' by James Ide. + +A button for React apps + +* HOMEPAGE: + * https://github.com/ide/react-native-button + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 James Ide + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-calendars + +This product contains a modified version of 'react-native-calendars' by Wix.com. + +React Native Calendar Components + +* HOMEPAGE: + * https://github.com/wix/react-native-calendars#readme + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2017 Wix.com + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## react-native-cookies + +This product contains a modified version of 'react-native-cookies' by Joseph P. Ferraro. + +Cookie manager for react native. + +* HOMEPAGE: + * https://github.com/joeferraro/react-native-cookies + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 shimo + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-device-info + +This product contains a modified version of 'react-native-device-info' by Rebecca Hughes. + +Get device information using react-native + +* HOMEPAGE: + * https://github.com/react-native-community/react-native-device-info#readme + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 Rebecca Hughes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-document-picker + +This product contains 'react-native-document-picker' by Elyx0. + +A react native interface to access Documents from dropbox google drive, iCloud + +* HOMEPAGE: + * https://github.com/Elyx0/react-native-document-picker#readme + +* LICENSE: MIT + +MIT License + +Copyright (c) 2016 Elyx0 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-exception-handler + +This product contains 'react-native-exception-handler' by master-atul. + +A react native module that lets you to register a global error handler that can capture fatal/non fatal uncaught exceptions. + +* HOMEPAGE: + * https://github.com/master-atul/react-native-exception-handler + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2017 Atul + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-elements + +This product contains 'react-native-elements' by React Native Elements. + +Cross Platform React Native UI Toolkit + +* HOMEPAGE: + * https://github.com/react-native-elements/react-native-elements + +* LICENSE: The MIT License (MIT) + +Copyright (c) 2016 Nader Dabit + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-fast-image + +This product contains 'react-native-fast-image' by Dylan Vann. + +Performant React Native image component + +* HOMEPAGE: + * https://github.com/DylanVann/react-native-fast-image + +* LICENSE: MIT + +MIT License + +Copyright (c) 2017 Dylan Vann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-file-viewer + +This product contains 'react-native-file-viewer' by Vincenzo Scamporlino. + +Native file viewer for React Native. Preview any type of file supported by the mobile device. + +* HOMEPAGE: + * https://github.com/vinzscam/react-native-file-viewer + +* LICENSE: MIT License + +Copyright (c) 2017 Vincenzo Scamporlino + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-gesture-handler + +This product contains 'react-native-gesture-handler' by Krzysztof Magiera. + +Experimental implementation of a new declarative API for gesture handling in react-native + +* HOMEPAGE: + * https://github.com/kmagiera/react-native-gesture-handler#readme + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2016 Krzysztof Magiera + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-haptic-feedback + +This product contains 'react-native-haptic-feedback' by Milk and Cookies. + +React-Native Haptic Feedback for iOS with a similar behaviour for Android + +* HOMEPAGE: + * https://github.com/milk-and-cookies-io/react-native-haptic-feedback + +* LICENSE: MIT + +MIT License + +Copyright (c) 2018 Michael Kuczera + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-hw-keyboard-event + +This product contains 'react-native-hw-keyboard-event' by Emilio Rodriguez. + +Event handler for hardware keyboard keystrokes + +* HOMEPAGE: + * https://github.com/emilioicai/react-native-hw-keyboard-event + +* LICENSE: MIT + +MIT License + +Copyright (c) 2019 Emilio Rodriguez + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## react-native-image-gallery + +This product contains a modified version of 'react-native-image-gallery' by Archriss. + +Pure JavaScript image gallery component for iOS and Android + +* HOMEPAGE: + * https://github.com/archriss/react-native-image-gallery#readme + +* LICENSE: ISC + +Note: An original license file for this dependency is not available. We determined the type of license based on the package registry entry for this project. The following text has been prepared using a template from the SPDX Workgroup (https://spdx.org) for this type of license. + +ISC License: + +Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") +Copyright (c) 1995-2003 by Internet Software Consortium + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--- + +## react-native-image-picker + +This product contains 'react-native-image-picker' by Marc Shilling. + +A React Native module that allows you to use native UI to select media from the device library or directly from the camera + +* HOMEPAGE: + * https://github.com/react-community/react-native-image-picker + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 Marc Shilling + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-keyboard-aware-scroll-view + +This product contains a modified version of 'react-native-keyboard-aware-scroll-view' by APSL. + +A ScrollView component that handles keyboard appearance and automatically scrolls to focused TextInput. + +* HOMEPAGE: + * https://github.com/APSL/react-native-keyboard-aware-scroll-view + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 APSL + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-keyboard-tracking-view + +This product contains a modified version of 'react-native-keyboard-tracking-view' by Artal Druk. + +React Native UI component which tracks the keyboard + +* HOMEPAGE: + * https://github.com/wix/react-native-keyboard-tracking-view + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2016 Wix.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-keychain + +This product contains 'react-native-keychain' by Joel Arvidsson. + +Keychain Access for React Native + +* HOMEPAGE: + * https://github.com/oblador/react-native-keychain + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 Joel Arvidsson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-linear-gradient + +This product contains 'react-native-linear-gradient' by Brent Vatne. + +A element for React Native + +* HOMEPAGE: + * https://github.com/react-native-community/react-native-linear-gradient#readme + +* LICENSE: MIT + +MIT License + +Copyright (c) 2016 React Native Community + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-local-auth + +This product contains a modified version of 'react-native-local-auth' by Mark Vayngrib. + +React Native local authentication with touch id or passcode + +* HOMEPAGE: + * https://github.com/tradle/react-native-local-auth + +* LICENSE: ISC + +Copyright (c) 2015, [Tradle, Inc](http://tradle.io/) + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +--- + +## react-native-localize + +This product contains 'react-native-localize' by React Native Community. + +A toolbox for your React Native app localization (formerly react-native-languages) + +* HOMEPAGE: + * https://github.com/react-native-community/react-native-localize + +* LICENSE: MIT License + +Copyright (c) 2017-present, Mathieu Acthernoene + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-mmkv-storage + +This product contains 'react-native-mmkv-storage' by Ammar Ahmed. + +An efficient, small & encrypted mobile key-value storage framework for React Native + +* HOMEPAGE: + * https://github.com/ammarahm-ed/react-native-mmkv-storage + +* LICENSE: MIT + +MIT License + +Copyright (c) 2020 Ammar Ahmed + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-navigation + +This product contains a modified version of 'react-native-navigation' by Wix.com. + +React Native Navigation - truly native navigation for iOS and Android + +* HOMEPAGE: + * https://github.com/wix/react-native-navigation + +* LICENSE: MIT + +MIT License + +Copyright (c) 2016 Wix.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-notifications + +This product contains a modified version of 'react-native-notifications' by Lidan Hifi. + +Advanced Push Notifications (Silent, interactive notifications) for iOS & Android + +* HOMEPAGE: + * https://github.com/wix/react-native-notifications + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2016 Wix.com LTD + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## react-native-passcode-status + +This product contains 'react-native-passcode-status' by Mark Vayngrib. + +check if device-level passcode is supported/enabled/disabled + +* HOMEPAGE: + * https://github.com/tradle/react-native-passcode-status + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 Tradle + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-permissions + +This product contains 'react-native-permissions' by Yonah Forst. + +Check and request user permissions in React Native. + +* HOMEPAGE: + * https://github.com/yonahforst/react-native-permissions + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 Yonah Forst + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-reanimated + +This product contains 'react-native-reanimated' by Software Mansion. + +React Native's Animated library reimplemented + +* HOMEPAGE: + * https://github.com/software-mansion/react-native-reanimated + +* LICENSE: The MIT License (MIT) + +Copyright (c) 2016 Krzysztof Magiera + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-safe-area + +This product contains 'react-native-safe-area' by Masayuki Iwai. + +React Native module to get Safe Area Insets for iOS 11 or later + +* HOMEPAGE: + * https://github.com/miyabi/react-native-safe-area#readme + +* LICENSE: MIT + +MIT License + +Copyright (c) 2017 Masayuki Iwai + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-safe-area-context + +This product contains 'react-native-safe-area-context' by Th3rdwave. + +A flexible way to handle safe area insets in JS. Also works on Android and Web + +* HOMEPAGE: + * https://github.com/th3rdwave/react-native-safe-area-context + +* LICENSE: MIT License + +Copyright (c) 2019 Th3rd Wave + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-screens + +This product contains 'react-native-screens' by Software Mansion. + +Native navigation primitives for your React Native app. + +* HOMEPAGE: + * https://github.com/software-mansion/react-native-screens + +* LICENSE: The MIT License (MIT) + +Copyright (c) 2018 Krzysztof Magiera + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-section-list-get-item-layout + +This product contains 'react-native-section-list-get-item-layout' by Jan Soendermann. + +This package simplifies constructing the getItemLayout prop for react native SectionLists. + +* HOMEPAGE: + * https://github.com/jsoendermann/rn-section-list-get-item-layout + +* LICENSE: Apache-2.0 + +Copyright (c) 2017 Jan Soendermann + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +--- + +## react-native-slider + +This product contains 'react-native-slider' by Jean Regisser. + +A pure JavaScript component for react-native + +* HOMEPAGE: + * https://github.com/jeanregisser/react-native-slider#readme + +* LICENSE: MIT + +MIT License + +Copyright (c) 2015-present Jean Regisser + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-status-bar-size + +This product contains 'react-native-status-bar-size' by Brent Vatne. + +Watch and respond to changes in the iOS status bar height + +* HOMEPAGE: + * https://github.com/jgkim/react-native-status-bar-size#readme + +* LICENSE: MIT + +Note: An original license file for this dependency is not available. We determined the type of license based on the package registry entry for this project. The following text has been prepared using a template from the SPDX Workgroup (https://spdx.org) for this type of license. + +MIT License + +Copyright (c) 2019 Brent Vatne + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +## react-native-svg + +This product contains 'react-native-svg' by React Native Community. + +SVG library for react-native + +* HOMEPAGE: + * https://github.com/react-native-community/react-native-svg#readme + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) [2015-2016] [Horcrux] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-vector-icons + +This product contains 'react-native-vector-icons' by Joel Arvidsson. + +Customizable Icons for React Native with support for NavBar/TabBar/ToolbarAndroid, image source and full styling. + +* HOMEPAGE: + * https://github.com/oblador/react-native-vector-icons + +* LICENSE: MIT + +The MIT License (MIT) + +Copyright (c) 2015 Joel Arvidsson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- + +## react-native-video + +This product contains 'react-native-video' by Brent Vatne. + +A