Skip to content

Commit 7aff0df

Browse files
author
crow
committed
Release 10.3.0
1 parent 7c56132 commit 7aff0df

18 files changed

Lines changed: 110 additions & 17 deletions

File tree

.pubignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

CHANGELOG.md

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

3+
## Version 10.3.0 - May 1, 2025
4+
Minor release that updates the Android SDK to 19.6.2 and the iOS SDK to 19.3.1.
5+
6+
### Changes
7+
- Updated Android SDK to [19.6.2](https://github.com/urbanairship/android-library/releases/tag/19.6.2)
8+
- Updated iOS SDK to [19.3.1](https://github.com/urbanairship/ios-library/releases/tag/19.3.1)
9+
- Added support for JSON attributes
10+
- Added new method `Airship.channel.waitForChannelId()` that waits for the channel ID to be created
11+
312
## Version 10.2.0 - March 27, 2025
413

514
Minor release that updates the Android SDK to 19.4.0 and the iOS SDK to 19.1.1

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
ext.kotlin_version = '1.9.0'
66
ext.coroutine_version = '1.5.2'
77
ext.datastore_preferences_version = '1.1.1'
8-
ext.airship_framework_proxy_version = '13.3.0'
8+
ext.airship_framework_proxy_version = '14.2.1'
99

1010

1111
repositories {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ class AirshipPlugin : FlutterPlugin, MethodCallHandler, ActivityAware {
119119

120120
// Channel
121121
"channel#getChannelId" -> result.resolve(scope, call) { proxy.channel.getChannelId() }
122+
"channel#waitForChannelId" -> result.resolve(scope, call) { proxy.channel.waitForChannelId() }
122123
"channel#addTags" -> result.resolve(scope, call) {
123124
call.stringList().forEach {
124125
proxy.channel.addTag(it)

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 = "10.2.0"
5+
const val AIRSHIP_PLUGIN_VERSION = "10.3.0"
66
}
77
}

example/.pubignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// swift-tools-version: 5.9
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
//
4+
// Generated file. Do not edit.
5+
//
6+
7+
import PackageDescription
8+
9+
let package = Package(
10+
name: "FlutterGeneratedPluginSwiftPackage",
11+
platforms: [
12+
.iOS("16.1")
13+
],
14+
products: [
15+
.library(name: "FlutterGeneratedPluginSwiftPackage", type: .static, targets: ["FlutterGeneratedPluginSwiftPackage"])
16+
],
17+
dependencies: [
18+
.package(name: "airship_flutter", path: "/Users/david.crow/source/airship-flutter/ios/airship_flutter")
19+
],
20+
targets: [
21+
.target(
22+
name: "FlutterGeneratedPluginSwiftPackage",
23+
dependencies: [
24+
.product(name: "airship-flutter", package: "airship_flutter")
25+
]
26+
)
27+
]
28+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//
2+
// Generated file. Do not edit.
3+
//

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

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

ios/.pubignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

0 commit comments

Comments
 (0)