I recalled that I saw somewhere posted about setting IOS minimum version. But I could not find it. Any help? Thanks. [import]uid: 65906 topic_id: 19773 reply_id: 319773[/import]
If you are using earlier build like 704 only it works I think. Here is mine:
[code]
settings =
{
orientation =
{
default = “landscapeLeft”,
supported =
{
“landscapeRight”,“landscapeLeft”
},
},
iphone =
{
plist =
{
MinimumOSVersion=“3.2.0”,
UIAppFonts = {
“Rumpelstiltskin.ttf”
},
UIStatusBarHidden=true,
UIApplicationExitsOnSuspend = false,
UIPrerenderedIcon = true,
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
“Icon-Small-50.png” ,
“Icon-Small.png” ,
“Icon-Small@2x.png”
},
},
},
}
[/code] [import]uid: 12979 topic_id: 19773 reply_id: 76603[/import]
Thanks,
If I am correct, the default is 3.0.1.
I am using #695.
Should I set this setting? I am still not sure about this.
- Since this setting was removed from the latest build version (if I understand correctly)
[import]uid: 65906 topic_id: 19773 reply_id: 76605[/import]
You don’t need to set the MinimumOSVersion in the build.settings file.
If you using the current build (2011.715) it will automatically be set to 4.3. Also note that starting from build 2011.707, you can’t build for anything less than iOS 4.3.
If you need to support iOS 3.1 - 4.2, then you’ll need to use build 2011.706 or earlier.
[import]uid: 70847 topic_id: 19773 reply_id: 76606[/import]
Build 695 will automatically set the MinimumOSVersion to 3.1, so you don’t need to set it manually unless you need to specify a higher version. [import]uid: 70847 topic_id: 19773 reply_id: 76608[/import]
Thank you for the reply.
I see. [import]uid: 65906 topic_id: 19773 reply_id: 76610[/import]