Skip to content

Commit 9c5af11

Browse files
committed
Fix installation instructions for screens
1 parent 954a8bb commit 9c5af11

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

website/versioned_docs/version-5.x/getting-started.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ If you're on a Mac and developing for iOS, you need to install pods to complete
5151
cd ios; pod install; cd ..
5252
```
5353

54+
To finalize installation of `react-native-screens` for Android, add the following two lines to `dependencies` section in `android/app/build.gradle`:
55+
56+
```gradle
57+
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
58+
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02'
59+
```
60+
5461
To finalize installation of `react-native-gesture-handler`, add the following at the **top** (make sure it's at the top and there's nothing else before it) of your entry file, such as `index.js` or `App.js`:
5562

5663
```js

0 commit comments

Comments
 (0)