Skip to content

Commit 40badcc

Browse files
🍒 Update iOS deployment target on release (#9677)
* 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
1 parent c230abd commit 40badcc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ if(APPLE)
8282
set(CMAKE_XCODE_ATTRIBUTE_GROUP_ID_IOS ${BUILD_IOS_GROUP_IDENTIFIER})
8383

8484
if(IOS)
85-
set(CMAKE_OSX_DEPLOYMENT_TARGET 13.0)
85+
set(CMAKE_OSX_DEPLOYMENT_TARGET 14.0)
8686
else()
8787
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15)
8888
endif()

scripts/cmake/Info.plist.QtGleanBindings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
<key>CFBundleVersion</key>
1818
<string>1</string>
1919
<key>MinimumOSVersion</key>
20-
<string>13.0</string>
20+
<string>14.0</string>
2121
</dict>
2222
</plist>

src/platforms/ios/iosnotificationhandler.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ - (void)userNotificationCenter:(UNUserNotificationCenter*)center
3030
withCompletionHandler:
3131
(void (^)(UNNotificationPresentationOptions options))completionHandler {
3232
Q_UNUSED(center)
33-
completionHandler(UNNotificationPresentationOptionAlert);
33+
completionHandler(UNNotificationPresentationOptionList | UNNotificationPresentationOptionBanner);
3434
}
3535

3636
- (void)userNotificationCenter:(UNUserNotificationCenter*)center

0 commit comments

Comments
 (0)