How to Specify iOS Compatibility Mention

Asked 2 years ago, Updated 2 years ago, 30 views


Released from Monaca with iOS app I would like to change the compatible version of iOS*.* or later in the App Store information.
What kind of settings should I use to change it?

Cordova is version 5.2.

monaca

2022-09-29 22:14

2 Answers

Edit MonacaApp-Info.plist
You can specify the minimum supported operating system as shown below.

<key>MinimumOSVersion</key>
<string> 4.1</string>

See also


2022-09-29 22:14

Specify deployment-target in config.xml as follows:

Supported OS 8.0 and above
<preference name="deployment-target" value="8.0"/>


2022-09-29 22:14

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.