From 1c096a073a90d2f70d41ee86d1c99f8b466f4d8b Mon Sep 17 00:00:00 2001 From: Fadi George Date: Tue, 8 Sep 2026 14:52:41 -0700 Subject: [PATCH 1/2] fix: raise minimum iOS version to 12 Co-authored-by: Cursor --- README.md | 2 +- com.onesignal.unity.ios/Editor/BuildPostProcessor.cs | 2 +- examples/demo/Assets/OneSignal/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a780d4ea..7abacb07 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ And via many additional platforms. [Check them all out](https://documentation.on - iOS Builds: CocoaPods 1.11.3 or newer - In order to test push notifications you will need - An Android 7 or newer device or emulator with "Google Play Store (Services)" installed - - An iOS 11 or newer device (iPhone, iPad, or iPod Touch) + - An iOS 12 or newer device (iPhone, iPad, or iPod Touch) ### Push Notification Credentials You must generate the appropriate credentials for the platform(s) you are releasing on: diff --git a/com.onesignal.unity.ios/Editor/BuildPostProcessor.cs b/com.onesignal.unity.ios/Editor/BuildPostProcessor.cs index e42a9b0c..3a93ad29 100644 --- a/com.onesignal.unity.ios/Editor/BuildPostProcessor.cs +++ b/com.onesignal.unity.ios/Editor/BuildPostProcessor.cs @@ -219,7 +219,7 @@ private void AddNotificationServiceExtension() // Makes it so that the extension target is Universal (not just iPhone) _project.SetBuildProperty(extensionGuid, "TARGETED_DEVICE_FAMILY", "1,2"); - _project.SetBuildProperty(extensionGuid, "IPHONEOS_DEPLOYMENT_TARGET", "11.0"); + _project.SetBuildProperty(extensionGuid, "IPHONEOS_DEPLOYMENT_TARGET", "12.0"); _project.SetBuildProperty(extensionGuid, "SWIFT_VERSION", "5.0"); _project.SetBuildProperty( extensionGuid, diff --git a/examples/demo/Assets/OneSignal/README.md b/examples/demo/Assets/OneSignal/README.md index 9509a814..f04a3ecc 100644 --- a/examples/demo/Assets/OneSignal/README.md +++ b/examples/demo/Assets/OneSignal/README.md @@ -37,7 +37,7 @@ And via many additional platforms. [Check them all out](https://documentation.on - iOS Builds: CocoaPods 1.11.3 or newer - In order to test push notifications you will need - An Android 7 or newer device or emulator with "Google Play Store (Services)" installed - - An iOS 11 or newer device (iPhone, iPad, or iPod Touch) + - An iOS 12 or newer device (iPhone, iPad, or iPod Touch) ### Push Notification Credentials You must generate the appropriate credentials for the platform(s) you are releasing on: From 013b258563c990e1c3300efbcd3d00fd583d17dd Mon Sep 17 00:00:00 2001 From: Fadi George Date: Wed, 9 Sep 2026 15:54:06 -0700 Subject: [PATCH 2/2] ci(codeql): remove pull_request trigger --- .github/workflows/codeql.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 87a0bed0..ac5b29f0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -7,8 +7,6 @@ concurrency: on: push: branches: ["main"] - pull_request: - branches: ["main"] schedule: - cron: "32 13 * * 0"