Skip to content

Commit 749c6aa

Browse files
Updating readme
1 parent 4d2f720 commit 749c6aa

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [0.5.0] 2019-12-16
3+
## [0.5.0] 2019-12-23
44

55
#### stream-chat-expo
66

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ yarn add stream-chat-expo
111111
yarn add @react-native-community/netinfo
112112
```
113113

114-
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/one/App.js) to see usage of the components.
114+
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/ExpoMessaging/App.js) to see usage of the components.
115115

116-
OR you can swap [this file](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/one/App.js) for your `App.js` in the root folder with additional following steps:
116+
OR you can swap [this file](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/ExpoMessaging/App.js) for your `App.js` in the root folder with additional following steps:
117117

118118
```bash
119-
yarn add react-navigation
119+
yarn add react-navigation@3.2.1 react-native-gesture-handler react-native-reanimated
120120
```
121121

122122
and finally
@@ -151,7 +151,7 @@ react-native link react-native-document-picker
151151

152152
```
153153

154-
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/two/App.js) to see usage of components.
154+
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/NativeMessaging/App.js) to see usage of components.
155155

156156
OR you can swap this file for your `App.js` in root folder with additional following steps:
157157

@@ -189,7 +189,7 @@ Just to be sure, please verify you are using appropriate version of following pa
189189

190190
- react-native-image-picker : https://github.com/react-native-community/react-native-image-picker#react-native-compatibility
191191

192-
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/two/App.js) to see usage of components.
192+
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/NativeMessaging/App.js) to see usage of components.
193193

194194
OR you can swap this file for your `App.js` in root folder with additional following steps:
195195

@@ -253,7 +253,7 @@ In current context, dependencies such as `react-native-document-picker` and (if
253253
1. When you execute `react-native run-ios` for the first time, it starts a metro bundler in parallel. It can result into some errors, since build process isn't complete yet. Try the following to fix this:
254254
1. Close/stop the metro bundler process.
255255
2. Let the build process finish completely, it can take usually around 2-3 minutes for the first time.
256-
3. Start the metro bundler manually by executing `yarn start` inside `stream-chat-react-native/examples/two` directory.
256+
3. Start the metro bundler manually by executing `yarn start` inside `stream-chat-react-native/examples/NativeMessaging` directory.
257257
2. When you execute `react-native run-android`, you may (not necessarily) run into following error:
258258
259259
```ERROR
@@ -282,9 +282,9 @@ In current context, dependencies such as `react-native-document-picker` and (if
282282

283283
To resolve this, do the following
284284

285-
1. Craete a file named `local.properties` inside `stream-chat-react-native/examples/two/android` directory
285+
1. Craete a file named `local.properties` inside `stream-chat-react-native/examples/NativeMessaging/android` directory
286286
2. Put the this line in that file. Make sure sdk path is correctly mentioned as per your system:
287287
```
288288
sdk.dir=/Users/{user_name}/Library/Android/sdk/
289289
```
290-
3. Rerun `react-native run-android` in `stream-chat-react-native/examples/two` directory
290+
3. Rerun `react-native run-android` in `stream-chat-react-native/examples/NativeMessaging` directory

examples/ExpoMessaging/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const theme = {
4040
`,
4141
},
4242
};
43-
43+
4444

4545
const filters = { type: 'messaging' };
4646
const sort = { last_message_at: -1 };

0 commit comments

Comments
 (0)