Skip to content

Commit e2aae6e

Browse files
committed
Fix package name references
1 parent 2702b89 commit e2aae6e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Documentation/iOSInstallation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ See a sample app in the `examples/GumTestApp` directory.
88

99
**IMPORTANT:** Make sure you are using CocoaPods 1.10 or higher.
1010
You may have to change the `platform` field in your podfile.
11-
`react-native-webrtc` doesn't support iOS < 12
11+
`@livekit/react-native-webrtc` doesn't support iOS < 12
1212
Set it to '12.0' or above or you'll get an error when running `pod install`.
1313

1414
```
@@ -46,7 +46,7 @@ CXProviderDelegate should call through to `RTCAudioSession.sharedInstance.audioS
4646
Javascript methods are also provided to call these methods:
4747

4848
```
49-
import { RTCAudioSession } from 'react-native-webrtc'
49+
import { RTCAudioSession } from '@livekit/react-native-webrtc'
5050
5151
// Call as needed.
5252
RTCAudioSession.audioSessionDidActivate();

Documentation/tvOSInstallation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Change the following dependency in your projects `package.json` file to get star
1313

1414
**IMPORTANT:** Make sure you are using CocoaPods 1.10 or higher.
1515
You may have to change the `platform` field in your podfile.
16-
`react-native-webrtc` doesn't support tvOS < 16. Set it to '16.0' or above.
16+
`@livekit/react-native-webrtc` doesn't support tvOS < 16. Set it to '16.0' or above.
1717
Older versions of tvOS don't support WebRTC.
1818

1919
```

examples/GumTestApp_macOS/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
StatusBar,
1818
} from 'react-native';
1919
import { Colors } from 'react-native/Libraries/NewAppScreen';
20-
import { mediaDevices, RTCView } from 'react-native-webrtc';
20+
import { mediaDevices, RTCView } from '@livekit/react-native-webrtc';
2121

2222
const App: () => React$Node = () => {
2323
const [stream, setStream] = useState(null);

examples/GumTestApp_macOS/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"react": "16.11.0",
1616
"react-native": "0.62.0",
1717
"react-native-macos": "^0.62.16",
18-
"react-native-webrtc": "*"
18+
"@livekit/react-native-webrtc": "*"
1919
},
2020
"devDependencies": {
2121
"@babel/core": "7.12.8",

0 commit comments

Comments
 (0)