Nainish Modi
Nainish Modi

Reputation: 488

How to link package lib in react native ios?

I tried to link packages using react native link command as well as manually and what does mean by Recovered References. my unlinked libs are showing there and how to resolve it?.

2.) Unable to link libRNvectoricons.a under Build Phrases > Link Binary With Libraries. could not find option there to link up.

Any help would be greatly appreciated.

Recovered References.

Build Phrases > Link Binary With Libraries

Upvotes: 1

Views: 161

Answers (1)

joshkmartinez
joshkmartinez

Reputation: 664

Follow these steps:

  1. Delete the node_modules folder inside the project
  2. run npm uninstall react-native-app-auth
  3. run npm install react-native-app-auth --save
  4. run react-native link react-native-app-auth
  5. Then follow these steps (iOS Setup & Android Setup)

Upvotes: 1

Related Questions