You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-16Lines changed: 14 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
# react-native-twilio-programmable-voice
2
-
This is a React Native wrapper for Twilio Programmable Voice SDK that lets you make and receive calls from your ReactNatvie App. This module is not curated nor maintained, but inspired by Twilio.
2
+
3
+
This is a React Native wrapper for Twilio Programmable Voice SDK that lets you make and receive calls from your React Native App. This module is not affiliated with or maintained by the Twilio team. This is maintained by contributions from the community.
3
4
4
5
# Twilio Programmable Voice SDK
5
6
@@ -8,7 +9,9 @@ This is a React Native wrapper for Twilio Programmable Voice SDK that lets you m
8
9
9
10
## Breaking changes in v4.0.0
10
11
11
-
- Android: remove the following block from your application's `AndroidManifest.xml`
12
+
It implements [react-native autolinking](https://github.com/react-native-community/cli/blob/master/docs/autolinking.md) as many other native libraries > react-native 0.60.0
13
+
14
+
Android: update Firebase Messaging to 17.3.4. Remove the following block from your application's `AndroidManifest.xml`
12
15
```xml
13
16
<!-- [START instanceId_listener] -->
14
17
<service
@@ -21,6 +24,8 @@ This is a React Native wrapper for Twilio Programmable Voice SDK that lets you m
21
24
<!-- [END instanceId_listener] -->
22
25
```
23
26
27
+
Android X is supported.
28
+
24
29
Data passed to the event `deviceDidReceiveIncoming` does not contain the key `call_state`, because state of Call Invites was removed in Twilio Android v3.0.0
25
30
26
31
- iOS: params changes for `connectionDidConnect` and `connectionDidDisconnect`
@@ -57,7 +62,9 @@ ReactNative success is directly linked to its module ecosystem. One way to make
57
62
## Installation
58
63
59
64
Before starting, we recommend you get familiar with [Twilio Programmable Voice SDK](https://www.twilio.com/docs/api/voice-sdk).
60
-
It's easier to integrate this module into your react-native app if you follow the Quick start tutorial from Twilio, because it makes very clear which setup steps are required.
65
+
It's easier to integrate this module into your react-native app if you follow the Quick start tutorial from Twilio, because it makes very clear which setup steps are required. On RN 0.60+, this module can be auto-linked (Android still requires FCM setup below).
66
+
67
+
### Manual Linking
61
68
62
69
63
70
```
@@ -140,8 +147,9 @@ buildscript {
140
147
141
148
dependencies {
142
149
...
150
+
// on React Native 0.60+, this module can be auto-linked and doesn't need a manual entry here
0 commit comments