Reputation: 488
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.
Upvotes: 1
Views: 161
Reputation: 664
Follow these steps:
node_modules
folder inside the projectnpm uninstall react-native-app-auth
npm install react-native-app-auth --save
react-native link react-native-app-auth
Upvotes: 1