I have an app in App Store that was build using Xcode 5.1.1. Is there a way for me to update the the app via the same Xcode version? Because when i tried to use Xcode 6.4 the app produced crashes. I have seen in iTunes connect that we can upload app via Xcode 5.1.1. The app compiled using Xcode 5.1.1 is working perfectly in iOS 9 though.
3
- 1You should bite the bullet and upgrade Xcode. The crashes may be caused by iOS (SDK), but it's far more likely that your app is doing something wrong that it used to get away with, but no longer can.Avi– Avi2015-11-26 07:21:33 +00:00Commented Nov 26, 2015 at 7:21
- Okay. The app compiled using Xcode 5.1.1 is working perfectly in iOS 9.Dony– Dony2015-11-26 07:41:51 +00:00Commented Nov 26, 2015 at 7:41
- @Dony : that is because Xcode 5.1.1 is using iOS 8 and not iOS 9... So you have code that make crashes if you compile with iOS 9 and you will need to fix it...Fahim Parkar– Fahim Parkar2015-11-26 09:30:39 +00:00Commented Nov 26, 2015 at 9:30
Add a comment |
2 Answers
The application will still produce crashs because you are not using the latest SDK.
So for iOS 9 it will not run properly , as you might use some deprecated methods which will cause crashs.
The proper way is to use the latest xCode, especially for testing purpose ..so you will be sure that your app will work properly with the latest iOS.