Reputation: 45
My application is running in iOS 5,6 and 7. Now I want to block for iOS 5.Application should run in only iOS 6 and 7.so is it possible?If yes then how to do? PLease help me.Thanking you.
Upvotes: 0
Views: 361
Reputation: 19
You need to install an old XCode version like 4.5 or earlier because the new XCode 5 supports only iOS 6.1 and iOS 7 or later.
Upvotes: -1
Reputation: 7921
Tap on the project in the left menu. Then, be sure you're on the project and not on the target and change the iOS Deployment Target to the one you wish.
Upvotes: 0
Reputation: 985
yes it is possible
just change deployment target to the minimum version you support.and Base SDK in Build Setting and something more in info.plist just check it and set your Deployment Target
Upvotes: 0
Reputation: 3911
you set your Deployment target to the minimum iOS version you require
Upvotes: 2
Reputation: 25993
You can release a new version with a higher Deployment Target. That will restrict the app so that only users on the version you specify or higher can install the new version of your app.
Users who have already installed the old version your app will continue to be able to use it.
Upvotes: 0
Reputation: 8631
As shown in the apple docs, you can set this as Deployment Target.
Go to your project -> General -> Deployment Target, this works as a minimum deploy version needed to run the app.
Upvotes: 0
Reputation: 4016
You need to set the Deployment target in the build settings to the minimum iOS version you require.
A general guideline is to set:
-Base SDK to latest
-deployment target to the minimum version you support.
Also - check your Info.plist file for the MinimumOSVersion key.
Upvotes: 2