Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to correctly set the minimum iOS version for my app? [closed]

Tags:

ios

ios4

ios-3.x

I am developed one application in ios 4.2. I try to test that application in iphone 3g. In that process error will occur like

"The Info.plist for application at /Users/gvrao/Desktop/BabyCryApp/build/Debug-iphoneos/BabyCryApp.app specifies a minimum OS version of 4.2, which is too high to be installed on iphone 3g"

And change the version in iphone development target to 3.1.3. But it was not working. Please tell me how to solve this problem.

like image 836
simbesi.com Avatar asked Jun 14 '11 10:06

simbesi.com


People also ask

How do I change the minimum iOS version?

The minimum iOS version can be set in the build settings under iOS Deployment Target. The same counts for macOS, tvOS, and watchOS.

What is the minimum iOS version?

The minimum supported release of iOS is iOS 11.

What is minimum deployment target iOS?

That is the iOS deployment target or the minimum deployment target for iOS. It means that the application runs on any iOS device with iOS 14.3 or later installed. The values the dropdown menu lists depend on the version of Xcode you are using. Xcode 12, for example, no longer supports iOS 8.


1 Answers

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.

like image 158
Abizern Avatar answered Oct 28 '22 16:10

Abizern