Skip to content

Commit 3c4020a

Browse files
committed
Merge branch 'develop' of github.com:GetStream/stream-chat-react-native into develop
2 parents 632fae5 + c3ceb8c commit 3c4020a

File tree

93 files changed

+1465
-4168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+1465
-4168
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ A clear and concise description of what the bug is.
2828
- Package version (stream-chat-react-native/stream-chat-expo)
2929
- react-native or expo version
3030
- Device/Emulator (android/ios) and OS version
31+
- Offline support enabled (yes/no)
3132

3233
**To Reproduce**
3334
Steps to reproduce the behavior:

.github/workflows/sample-distribution.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ concurrency:
1111

1212
jobs:
1313
build_and_deploy_ios_testflight_qa:
14-
runs-on: [macos-latest]
14+
runs-on: macos-12
1515
steps:
16+
- name: Install Bot SSH Key
17+
uses: webfactory/[email protected]
18+
with:
19+
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}
1620
- uses: actions/checkout@v2
1721
with:
1822
token: ${{ secrets.DOCUSAURUS_GH_TOKEN }}
@@ -42,7 +46,6 @@ jobs:
4246
- name: Build and release Testflight QA
4347
env:
4448
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
45-
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.DOCUSAURUS_GH_TOKEN }}
4649
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
4750
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
4851
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }}

docusaurus/docs/reactnative/basics/getting_started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ For some of the packages listed below, there are additional steps required to se
153153

154154
- `react-native-gesture-handler` - [additional installation steps](https://docs.swmansion.com/react-native-gesture-handler/docs/#android)
155155

156-
RNGH requires the package to be imported at the **top of the entry file** before anything else, this is usually your `App.js` or `index.js` file.
156+
RNGH requires the package to be imported at the **top of the entry file** before anything else, this is usually your `App.tsx` or `index.js` file.
157157

158158
```tsx
159159
import 'react-native-gesture-handler';

docusaurus/docs/reactnative/basics/offline_support.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ React Native Chat SDK provides OOTB support for offline mode, which means user w
88
with chat even when the network is off. This is an opt-in feature that needs to be explicitly enabled on application
99
level.
1010

11-
> Offline support is currently not implemented for Expo package (stream-chat-expo).
11+
> Integration with Expo is possible using the [expo-dev-client](https://docs.expo.dev/development/getting-started/) library.
12+
> Offline support cannot be used in the "Expo Go" app, because [it requires custom native code](https://docs.expo.io/workflow/customizing/).
1213
1314
## Features
1415

docusaurus/reactnative_versioned_docs/version-3.x.x/basics/getting_started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ To be able to use the Stream Chat React Native SDK, a few dependencies must meet
108108

109109
:::info
110110

111-
`react-native-gesture-handler` requires the package to be imported at the **top of the entry file** before anything else, this is usually your `App.js` or `index.js` file.
111+
`react-native-gesture-handler` requires the package to be imported at the **top of the entry file** before anything else, this is usually your `App.tsx` or `index.js` file.
112112

113113
<br />
114114

docusaurus/reactnative_versioned_docs/version-3.x.x/guides/upgrade_helper.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ AppRegistry.registerComponent(appName, () => App);
7070

7171
#### Import gesture handler dependency
7272

73-
v3 requires you to import the gesture handler dependency at the top of your application's entry file (usually your App.js or index.js) before any other dependencies:
73+
v3 requires you to import the gesture handler dependency at the top of your application's entry file (usually your App.tsx or index.js) before any other dependencies:
7474

7575
```tsx {1}
7676
import 'react-native-gesture-handler';

docusaurus/reactnative_versioned_docs/version-4.x.x/basics/getting_started.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ For some of the packages listed below, there are additional steps required to se
120120

121121
- `react-native-gesture-handler` - [additional installation steps](https://docs.swmansion.com/react-native-gesture-handler/docs/#android)
122122

123-
RNGH requires the package to be imported at the **top of the entry file** before anything else, this is usually your `App.js` or `index.js` file.
123+
RNGH requires the package to be imported at the **top of the entry file** before anything else, this is usually your `App.tsx` or `index.js` file.
124124

125125
```tsx
126126
import 'react-native-gesture-handler';
@@ -241,7 +241,7 @@ For some of the packages listed below, there are additional steps required to se
241241

242242
- `react-native-gesture-handler` - [additional installation steps](https://docs.expo.dev/versions/latest/sdk/gesture-handler/#api)
243243

244-
RNGH requires the package to be imported at the **top of the entry file** before anything else, this is usually your `App.js` or `index.js` file.
244+
RNGH requires the package to be imported at the **top of the entry file** before anything else, this is usually your `App.tsx` or `index.js` file.
245245

246246
```tsx
247247
import 'react-native-gesture-handler';

examples/ExpoMessaging/App.js

Lines changed: 0 additions & 208 deletions
This file was deleted.

0 commit comments

Comments
 (0)