Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 363 Bytes

faq.md

File metadata and controls

21 lines (15 loc) · 363 Bytes

FAQ

debug hoist issues

I have a build error with native dependencies, how to I detect where the library is installed?

  1. run this from your terminal
find . -type d | grep react-native-safe-area-context
  1. Update apps/mobile/package.json to
  "dependencies": {
    ...
    "react-native-safe-area-context": "*",
    ...
  }