Skip to content

Commit

Permalink
🍒 Update iOS deployment target on release (#9677)
Browse files Browse the repository at this point in the history
* Maybe fix xcode cloud builds on main (#9673)

* VPN-6445: Bump iOS deployment target to 14 (#9656)

* Bump iOS deployment target to 14

* Update deprecated enum case
  • Loading branch information
lesleyjanenorton authored Jun 21, 2024
1 parent c230abd commit 40badcc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ if(APPLE)
set(CMAKE_XCODE_ATTRIBUTE_GROUP_ID_IOS ${BUILD_IOS_GROUP_IDENTIFIER})

if(IOS)
set(CMAKE_OSX_DEPLOYMENT_TARGET 13.0)
set(CMAKE_OSX_DEPLOYMENT_TARGET 14.0)
else()
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15)
endif()
Expand Down
2 changes: 1 addition & 1 deletion scripts/cmake/Info.plist.QtGleanBindings
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>CFBundleVersion</key>
<string>1</string>
<key>MinimumOSVersion</key>
<string>13.0</string>
<string>14.0</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion src/platforms/ios/iosnotificationhandler.mm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ - (void)userNotificationCenter:(UNUserNotificationCenter*)center
withCompletionHandler:
(void (^)(UNNotificationPresentationOptions options))completionHandler {
Q_UNUSED(center)
completionHandler(UNNotificationPresentationOptionAlert);
completionHandler(UNNotificationPresentationOptionList | UNNotificationPresentationOptionBanner);
}

- (void)userNotificationCenter:(UNUserNotificationCenter*)center
Expand Down

0 comments on commit 40badcc

Please sign in to comment.