Skip to content

chore: RN 0.80 compatibility #3125

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 6 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions examples/ExpoMessaging/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,25 @@
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"usesIcloudStorage": true,
"bundleIdentifier": "io.stream.expomessagingapp"
"bundleIdentifier": "io.stream.expomessagingapp",
"appleTeamId": "EHV7XZLAHA"
},
"android": {
"package": "io.stream.expomessagingapp",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"permissions": [
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS"
]
},
"web": {
"favicon": "./assets/favicon.png",
Expand Down
2 changes: 1 addition & 1 deletion examples/ExpoMessaging/components/ChatWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const ChatWrapper = ({ children }: PropsWithChildren<{}>) => {
i18nInstance={streami18n}
value={{ style: theme }}
>
<Chat client={chatClient} i18nInstance={streami18n}>
<Chat enableOfflineSupport client={chatClient} i18nInstance={streami18n}>
{children}
</Chat>
</OverlayProvider>
Expand Down
60 changes: 30 additions & 30 deletions examples/ExpoMessaging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,41 +10,41 @@
"eject": "expo eject"
},
"dependencies": {
"@op-engineering/op-sqlite": "^11.4.7",
"@op-engineering/op-sqlite": "^14.0.3",
"@react-native-community/netinfo": "11.4.1",
"@react-navigation/elements": "^1.3.30",
"expo": "~52.0.36",
"expo-av": "~15.0.2",
"expo-clipboard": "~7.0.1",
"expo-constants": "~17.0.7",
"expo-document-picker": "~13.0.3",
"expo-file-system": "~18.0.11",
"expo-haptics": "~14.0.1",
"expo-image-manipulator": "~13.0.6",
"expo-image-picker": "~16.0.6",
"expo-linking": "~7.0.5",
"expo-router": "~4.0.17",
"expo-sharing": "~13.0.1",
"expo-splash-screen": "~0.29.22",
"expo-status-bar": "~2.0.1",
"expo-video": "^2.0.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.77.1",
"react-native-gesture-handler": "~2.24.0",
"react-native-reanimated": "~3.16.7",
"react-native-safe-area-context": "5.2.0",
"react-native-screens": "~4.8.0",
"react-native-svg": "15.11.1",
"react-native-web": "~0.19.13",
"@react-navigation/elements": "^1.3.31",
"expo": "^53.0.0",
"expo-av": "~15.1.6",
"expo-clipboard": "~7.1.4",
"expo-constants": "~17.1.6",
"expo-document-picker": "~13.1.5",
"expo-file-system": "~18.1.10",
"expo-haptics": "~14.1.4",
"expo-image-manipulator": "~13.1.7",
"expo-image-picker": "~16.1.4",
"expo-linking": "~7.1.5",
"expo-router": "~5.1.0",
"expo-sharing": "~13.1.5",
"expo-splash-screen": "~0.30.9",
"expo-status-bar": "~2.2.3",
"expo-video": "~2.2.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.3",
"react-native-gesture-handler": "~2.26.0",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"react-native-web": "^0.20.0",
"stream-chat-expo": "link:../../package/expo-package",
"stream-chat-react-native-core": "link:../../package",
"typescript": "~5.7.3"
"typescript": "~5.8.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@rnx-kit/metro-config": "^2.0.1",
"@rnx-kit/metro-resolver-symlinks": "^0.2.1"
"@babel/core": "^7.27.4",
"@rnx-kit/metro-config": "^2.1.0",
"@rnx-kit/metro-resolver-symlinks": "^0.2.5"
},
"resolutions": {
"@types/react": "^19.0.0"
Expand Down
Loading
Loading