What is react-native link?

后端 未结 4 1275
后悔当初
后悔当初 2020-12-01 03:24

What is the purpose of the react-native link command?

4条回答
  •  长情又很酷
    2020-12-01 03:54

    When you installed any third party library with native content,you have to link the dependencies in android and ios. react-native link is responsible for including the dependencies in gradlew and pod files.

    for suppose you installed react-native-vector-icons package then you have to link in your gradlew files. the new version of react native 0.60 has auto linking.

    npm install react-native-vector-icons

    react-native link react-native-vector-icons

提交回复
热议问题