开发者

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

开发者 https://www.devze.com 2023-03-13 07:10 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

I am developed one applic开发者_开发知识库ation 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.


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.


Do you get build errors when you try to build for version 3.1.3 in xcode.

iOS4 SDK has a lot of features that possibly are not featured in older versions of the the firmware.

0

精彩评论

暂无评论...
验证码 换一张
取 消