From 832fb9d309bab51cf74a5de6646c45c3e7fe23af Mon Sep 17 00:00:00 2001 From: Steven Bell Date: Tue, 17 Mar 2020 09:53:33 -0400 Subject: [PATCH 1/2] remove no longer needed android deps --- versioned_docs/version-5.x/getting-started.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/versioned_docs/version-5.x/getting-started.md b/versioned_docs/version-5.x/getting-started.md index a211ffd62c2..bf7f5ef29fb 100755 --- a/versioned_docs/version-5.x/getting-started.md +++ b/versioned_docs/version-5.x/getting-started.md @@ -50,13 +50,6 @@ If you're on a Mac and developing for iOS, you need to install pods to complete cd ios; pod install; cd .. ``` -To finalize installation of `react-native-screens` for Android, add the following two lines to `dependencies` section in `android/app/build.gradle`: - -```gradle -implementation 'androidx.appcompat:appcompat:1.1.0-rc01' -implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02' -``` - 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`: ```js From 93dc5bea7103d07d35242a35d97e7dd80953396a Mon Sep 17 00:00:00 2001 From: Steven Bell Date: Tue, 17 Mar 2020 09:58:03 -0400 Subject: [PATCH 2/2] remove android deps for RN Screens --- versioned_docs/version-4.x/getting-started.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/versioned_docs/version-4.x/getting-started.md b/versioned_docs/version-4.x/getting-started.md index cd78fff2451..6f5fde667c0 100644 --- a/versioned_docs/version-4.x/getting-started.md +++ b/versioned_docs/version-4.x/getting-started.md @@ -70,13 +70,6 @@ Next, we need to link these libraries. The steps depends on your React Native ve cd ios; pod install; cd .. ``` - To finalize installation of `react-native-screens` for Android, add the following two lines to `dependencies` section in `android/app/build.gradle`: - - ```gradle - implementation 'androidx.appcompat:appcompat:1.1.0-rc01' - implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02' - ``` - - **React Native 0.59 and lower** If you're on an older React Native version, you need to manually link the dependencies. To do that, run: