Skip to content

Commit b2fe7bc

Browse files
authored
Merge pull request #293 from urbanairship/release-11.3.1
Release 11.3.1
2 parents 9e580d5 + eebd6ad commit b2fe7bc

File tree

9 files changed

+50
-22
lines changed

9 files changed

+50
-22
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Flutter Plugin Changelog
22

3+
## Version 11.3.1 - April 8, 2026
4+
5+
Patch release that fixes iOS cold start push notification and deep link events not firing.
6+
7+
### Changes
8+
- Fixed iOS cold start push notification and deep link events not firing due to the plugin loader initializing too late to set `UNUserNotificationCenter.delegate`
9+
310
## Version 11.3.0 - April 1, 2026
411

512
Minor release that updates the Android SDK to 20.6.1 and the iOS SDK to 20.6.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The official Airship Flutter plugin for iOS and Android.
2626
Add the dependency to your `pubspec.yaml`:
2727
```yaml
2828
dependencies:
29-
airship_flutter: ^11.3.0
29+
airship_flutter: ^11.3.1
3030
```
3131
3232
Then run:

android/src/main/kotlin/com/airship/flutter/AirshipPluginVersion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ package com.airship.flutter
22

33
class AirshipPluginVersion {
44
companion object {
5-
const val AIRSHIP_PLUGIN_VERSION = "11.3.0"
5+
const val AIRSHIP_PLUGIN_VERSION = "11.3.1"
66
}
77
}

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 60;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -255,6 +255,7 @@
255255
99041C182CC1DAE600031558 /* Embed Foundation Extensions */,
256256
9705A1C41CF9048500538489 /* Embed Frameworks */,
257257
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
258+
62100F363D7F3319C11D3216 /* [CP] Embed Pods Frameworks */,
258259
);
259260
buildRules = (
260261
);
@@ -339,8 +340,8 @@
339340
);
340341
mainGroup = 97C146E51CF9000F007C117D;
341342
packageReferences = (
342-
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */,
343-
99A0698B2E32E92A0054FC6F /* XCLocalSwiftPackageReference "../../ios/airship_flutter" */,
343+
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "FlutterGeneratedPluginSwiftPackage" */,
344+
99A0698B2E32E92A0054FC6F /* XCLocalSwiftPackageReference "airship_flutter" */,
344345
45B52C3F2EE1632500DF7D5E /* XCRemoteSwiftPackageReference "ios-library" */,
345346
);
346347
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
@@ -400,6 +401,28 @@
400401
shellPath = /bin/sh;
401402
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin\n";
402403
};
404+
62100F363D7F3319C11D3216 /* [CP] Embed Pods Frameworks */ = {
405+
isa = PBXShellScriptBuildPhase;
406+
buildActionMask = 2147483647;
407+
files = (
408+
);
409+
inputPaths = (
410+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh",
411+
"${BUILT_PRODUCTS_DIR}/Airship/AirshipKit.framework",
412+
"${BUILT_PRODUCTS_DIR}/AirshipFrameworkProxy/AirshipFrameworkProxy.framework",
413+
"${BUILT_PRODUCTS_DIR}/airship_flutter/airship_flutter.framework",
414+
);
415+
name = "[CP] Embed Pods Frameworks";
416+
outputPaths = (
417+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AirshipKit.framework",
418+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AirshipFrameworkProxy.framework",
419+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/airship_flutter.framework",
420+
);
421+
runOnlyForDeploymentPostprocessing = 0;
422+
shellPath = /bin/sh;
423+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
424+
showEnvVarsInLog = 0;
425+
};
403426
9740EEB61CF901F6004384FC /* Run Script */ = {
404427
isa = PBXShellScriptBuildPhase;
405428
alwaysOutOfDate = 1;
@@ -1050,11 +1073,11 @@
10501073
/* End XCConfigurationList section */
10511074

10521075
/* Begin XCLocalSwiftPackageReference section */
1053-
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */ = {
1076+
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "FlutterGeneratedPluginSwiftPackage" */ = {
10541077
isa = XCLocalSwiftPackageReference;
10551078
relativePath = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage;
10561079
};
1057-
99A0698B2E32E92A0054FC6F /* XCLocalSwiftPackageReference "../../ios/airship_flutter" */ = {
1080+
99A0698B2E32E92A0054FC6F /* XCLocalSwiftPackageReference "airship_flutter" */ = {
10581081
isa = XCLocalSwiftPackageReference;
10591082
relativePath = ../../ios/airship_flutter;
10601083
};

example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 5 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/ios/Runner.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 5 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/airship_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
AIRSHIP_FLUTTER_VERSION="11.3.0"
2+
AIRSHIP_FLUTTER_VERSION="11.3.1"
33

44
#
55
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Foundation
22

33
class AirshipPluginVersion {
4-
static let pluginVersion = "11.3.0"
4+
static let pluginVersion = "11.3.1"
55
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: airship_flutter
22
description: "Cross-platform plugin interface for the native Airship iOS and Android SDKs. Simplifies adding Airship to Flutter apps."
3-
version: 11.3.0
3+
version: 11.3.1
44
homepage: https://www.airship.com/
55
repository: https://github.com/urbanairship/airship-flutter
66
issue_tracker: https://github.com/urbanairship/airship-flutter/issues

0 commit comments

Comments
 (0)