Open phamha98 opened 10 months ago
I usually have this problem when a dependency is not updated.
You can try following these steps, this usually works for me:
1- Delete your Podfile.lock (I like to use the command '-rm -rf Podfile.lock' on the terminal for this)
2- Delete your Pods folder (I like to use the command '-rm -rf Pods' in the terminal for this)
3- Delete your .xcworkspace
4- Pod install
5- Clear your project into XCode> Product> Clean Build Folder
gem list active_support
nothing worked for me, until go to VSCode(IDE APP), and ios/App/App.xcodeproj/project.pbxproj that file , and searched EXCLUDED_ARCHS = arm64; and delete that line,
i did same thing from xcode, like go to target>build settings, exclude arc thing and deleted arm64 from there, didnt worked before, but deleting from VSCode worked , weird
rm -rf ~/Library/Developer/Xcode/DerivedData/ && pod cache clean --all && rm -rf build && cd .. && rm -rf node_modules && npm i && cd ios && pod install; bundle exec fastlane beta config:staging
rm -rf /usr/local/bin/node ln -s $(which node) /usr/local/bin/node
nvm unalias default
source="$(readlink "${source}")" source="$(readlink -f "${source}")"
xcode.env.local export NODE_BINARY="/opt/homebrew/Cellar/node/20.8.1/bin/node" export NODE_BINARY="/usr/local/bin/node"
softwareupdate --install-rosetta
arch -x86_64 pod deintegrate && arch -x86_64 pod cache clean --all
arch -x86_64 pod install
nvm alias default 16