iOS Question How to handle if my app only support for IOS xx

Hypnos

Active Member
Licensed User
Longtime User
hi Erel,

I would like to know how we can handle the case if our apps only support for IOS 8+ ? Anything we need to set in B4I?

Thanks
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Currently it is a but cumbersome. You will need to edit project.pbxprox.template that is in the installation folder and change line 237 from:
IPHONEOS_DEPLOYMENT_TARGET = 7.0;

To:
IPHONEOS_DEPLOYMENT_TARGET = 8.0;

Note that there is a similar line in line 198 (debug). It has no effect.

Edit the file while the IDE is closed.

It will be configurable from inside the IDE in the next version.
 
Upvote 0
Top