I'm using React Native 0.60.5 and am linking this module. It says that for React Native 0.60+, "CLI autolink feature links the module while building the app", so all we need to run is yarn add @react-native-community/async-storage
.
However, on the main page describing autolinking it says that we need to run:
yarn add @react-native-community/async-storage
cd ios && pod install && cd ..
What I Want To Know:
Do we have to run pod install
for all native modules with React Native 0.60+?
pod install
command. – Yeciespod install
just linked the native module, and that that's what auto-linking was accomplishing automatically. What am I missing here? – Macleodpod install
to link them? If one of them gets auto-linked and then I try to manually link it withpod install
as well, would that do nothing since it was already auto-linked? – Macleodpod install
– Agoraphobia