1
2
3rm -rf ~/Library/Caches/CocoaPods
4rm -rf Pods
5rm -rf ~/Library/Developer/Xcode/DerivedData/*
6pod deintegrate
7pod setup
8
9And delete the project's Pods directory. The location of it is project directory > ios > Pods.
10Then in the project directory > ios location, install pod with pod install
11And react-native run-ios in project directory.
12
13