如何添加这些依赖项?

How do I add these dependencies?

我是 React Native 的新手。 我正在尝试在我的项目上安装 react-native-router-flux 跟随这个网站

https://github.com/aksonov/react-native-router-flux

其中一个步骤适用于使用 React Native 0.60 及更高版本的用户。 对于 android 用户它说 "add the following two lines to dependencies section in android/app/build.gradle:"

implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02'

虽然我不知道该怎么做 你能帮帮我吗?

因此您需要打开您提到的文件并搜索单词 dependencies,后跟大括号。在括号内(以及红色箭头所指的位置),您需要粘贴他们告诉您添加的代码:

implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02'

您应该找到至少两个以单词 implementation 开头并且已经在依赖项列表中的条目(在红色箭头之前)。 为了更快地找到它,在你的编辑器中你可以使用 CTRL+FCOMMAND+F 如果你使用 MacOS。