Skip to content

Commit 8bb7044

Browse files
authored
chore(sample): add benchmark environment (#2032)
* adds benchmark environment * removes old livestream env * updates to webrtc patch for CI fix
1 parent 0f4df3c commit 8bb7044

File tree

11 files changed

+21
-23
lines changed

11 files changed

+21
-23
lines changed

packages/noise-cancellation-react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
},
4848
"homepage": "https://github.com/GetStream/stream-video-js#readme",
4949
"devDependencies": {
50-
"@stream-io/react-native-webrtc": "137.0.0",
50+
"@stream-io/react-native-webrtc": "137.0.2",
5151
"react": "19.1.0",
5252
"react-native": "^0.81.5",
5353
"react-native-builder-bob": "^0.37.0",

packages/react-native-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
"@react-native-firebase/messaging": "^23.4.0",
127127
"@react-native/babel-preset": "^0.81.5",
128128
"@stream-io/noise-cancellation-react-native": "workspace:^",
129-
"@stream-io/react-native-webrtc": "137.0.0",
129+
"@stream-io/react-native-webrtc": "137.0.2",
130130
"@stream-io/video-filters-react-native": "workspace:^",
131131
"@testing-library/jest-native": "^5.4.3",
132132
"@testing-library/react-native": "13.3.3",

packages/video-filters-react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
},
4848
"homepage": "https://github.com/GetStream/stream-video-js#readme",
4949
"devDependencies": {
50-
"@stream-io/react-native-webrtc": "137.0.0",
50+
"@stream-io/react-native-webrtc": "137.0.2",
5151
"react": "19.1.0",
5252
"react-native": "^0.81.5",
5353
"react-native-builder-bob": "^0.37.0",

sample-apps/react-native/dogfood/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@react-navigation/native": "^7.1.18",
2222
"@react-navigation/native-stack": "^7.3.27",
2323
"@stream-io/noise-cancellation-react-native": "workspace:^",
24-
"@stream-io/react-native-webrtc": "137.0.0",
24+
"@stream-io/react-native-webrtc": "137.0.2",
2525
"@stream-io/video-filters-react-native": "workspace:^",
2626
"@stream-io/video-react-native-sdk": "workspace:^",
2727
"axios": "^1.12.2",

sample-apps/react-native/dogfood/src/components/ParticipantsInfoListModal.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,7 @@ export const ParticipantsInfoListModal = ({
7979
? `https://pronto.getstream.io/join/${call.id}`
8080
: environment === 'pronto-staging'
8181
? `https://pronto-staging.getstream.io/join/${call.id}`
82-
: environment === 'livestream'
83-
? `https://livestream.getstream.io/join/${call.id}`
84-
: `https://getstream.io/video/demos/join/${call.id}`;
82+
: `https://getstream.io/video/demos/join/${call.id}`;
8583
await Share.share({
8684
url,
8785
title: 'Stream Calls | Join Call',

sample-apps/react-native/dogfood/src/screens/ChooseAppModeScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const ChooseAppModeScreen = () => {
3131
};
3232

3333
const onLiveStreamSelect = () => {
34-
setState({ appMode: 'LiveStream', appEnvironment: 'livestream' });
34+
setState({ appMode: 'LiveStream' });
3535
};
3636

3737
const onRingingSelect = () => {

sample-apps/react-native/dogfood/src/screens/LoginScreen/EnvSwitcherButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const appEnvironments: AppEnvironment[] = [
1313
'video-moderation',
1414
'demo',
1515
'pronto-staging',
16-
'livestream',
16+
'stream-benchmark',
1717
];
1818
export default function EnvSwitcherButton() {
1919
const [modalVisible, setModalVisible] = useState(false);

sample-apps/react-native/dogfood/src/types/env.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ type AppEnvironment =
22
| 'pronto'
33
| 'pronto-staging'
44
| 'demo'
5-
| 'livestream'
6-
| 'video-moderation';
5+
| 'video-moderation'
6+
| 'stream-benchmark';
77

88
declare module '@env' {
99
export const REACT_NATIVE_DOGFOOD_APP_ENVIRONMENT: AppEnvironment;

sample-apps/react-native/expo-video-sample/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@react-native-firebase/app": "^23.4.0",
2121
"@react-native-firebase/messaging": "^23.4.0",
2222
"@stream-io/noise-cancellation-react-native": "workspace:^",
23-
"@stream-io/react-native-webrtc": "137.0.0",
23+
"@stream-io/react-native-webrtc": "137.0.2",
2424
"@stream-io/video-filters-react-native": "workspace:^",
2525
"@stream-io/video-react-native-sdk": "workspace:^",
2626
"expo": "^54.0.12",

sample-apps/react-native/ringing-tutorial/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@react-native-firebase/messaging": "^23.4.0",
2424
"@react-navigation/bottom-tabs": "^7.4.8",
2525
"@react-navigation/native": "^7.1.18",
26-
"@stream-io/react-native-webrtc": "137.0.0",
26+
"@stream-io/react-native-webrtc": "137.0.2",
2727
"@stream-io/video-react-native-sdk": "workspace:^",
2828
"expo": "^54.0.12",
2929
"expo-blur": "~15.0.7",

0 commit comments

Comments
 (0)