Skip to content

Commit 0231f73

Browse files
CMorooneycalvin
andauthored
updates README to illustrate different android module gradle depenency requirements depending on gradle version (#650)
Co-authored-by: calvin <[email protected]>
1 parent 1e2d538 commit 0231f73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,14 @@ project(':react-native-twilio-video-webrtc').projectDir = new File(rootProject.p
113113
```
114114

115115
And include the library in your dependencies in `android/app/build.gradle`:
116+
(if using gradle 4 or lower, replace `implementation` with `compile` below)
116117

117118
```
118119
dependencies {
119120
.....
120121
.....
121122
.....
122-
compile project(':react-native-twilio-video-webrtc')
123+
implementation project(':react-native-twilio-video-webrtc')
123124
}
124125
```
125126

0 commit comments

Comments
 (0)