Skip to content

Commit

Permalink
VPN-6445: Bump iOS deployment target to 14 (#9656)
Browse files Browse the repository at this point in the history
* Bump iOS deployment target to 14

* Update deprecated enum case
  • Loading branch information
lesleyjanenorton committed Jun 17, 2024
1 parent 1bae394 commit 83a2074
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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 11.0)
endif()
Expand Down
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 83a2074

Please sign in to comment.