3

I need to upgrade my React-native app from 0.61.0 to 0.62.0. The best safety way to do it manually with React Native Upgrade Helper https://react-native-community.github.io/upgrade-helper. But during this way a lot of changes need to do in ios/MyProject.xcodeproj/project.pbxproj file in Xcode. But I'm not so familiar with it. Can somebody recommend me please how to make changes in project.pbxproj in Xcode for upgrade of RN version?

jocoders
  • 1,594
  • 2
  • 19
  • 54

2 Answers2

0

On ios/MyProject.xcodeproj/project.pbxproj you can manually change the version by editing all the MARKETING_VERSION variables values, make sure to change the version on package.json as well.

Once you did, just clean the current cache on XCode (command + K) and generate a new .ipa as you're used to do. It should work.

Lucas Andrade
  • 4,315
  • 5
  • 29
  • 50
0

On your main project folder go to the ios/ folder. Right-click on your MyApp.xcodeproj file and select "Show Package Contents" in the context menu.
Once inside you will find the project.pbxproj file, open it with Xcode (just double-click). I assume you already have it installed.
There you gonna be able to make the changes that you need.

Brogrammer
  • 163
  • 1
  • 9