How can I clean (reset cache) of React Native using Expo. Not sure if it is cache issue

前端 未结 3 1609
自闭症患者
自闭症患者 2020-12-24 01:22

I am building a simple React Native app with create-react-native-app using only react-navigation and base-64(base 64 encode/decode) as dependencies. Over time starting the a

相关标签:
3条回答
  • 2020-12-24 01:34

    The command to run is:

    expo r -c

    0 讨论(0)
  • 2020-12-24 01:37

    expo r -c

    According to this forum post from an Expo dev, that's the command to start it cache clean

    EDIT: They have changed it from exp r -c to expo r -c

    0 讨论(0)
  • 2020-12-24 01:49

    I was running expo build:ios and needed to clear the cached provisioning profile. I did so with:

    expo build:ios --clear-provisioning-profile
    

    To see the full list of commands that clear specific elements from the cache, run expo build:ios --help

    0 讨论(0)
提交回复
热议问题