Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Set iOS minimum deployment version to 9.0 #2131

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ on updateSettings
end if
set the label of button "Supported Devices" to it

-- We only support iOS 8.0 and later
if tSettings["ios,minimum version"] is not empty and tSettings["ios,minimum version"] < "8.0" then
-- We only support iOS 9.0 and later
if tSettings["ios,minimum version"] is not empty and tSettings["ios,minimum version"] < "9.0" then
put empty into tSettings["ios,minimum version"]
end if

set the label of button "Minimum iOS Version" to computeDefault(tSettings["ios,minimum version"], "8.0") && "or later"
set the label of button "Minimum iOS Version" to computeDefault(tSettings["ios,minimum version"], "9.0") && "or later"
set the hilite of button "Persistent WiFi" to computeDefault(tSettings["ios,persistent wifi"], "false")
set the hilite of button "Background Audio" to computeDefault(tSettings["ios,background audio"], "false")
set the hilite of button "Location Update" to computeDefault(tSettings["ios,background location update"], "false")
Expand Down