Skip to content

Commit 448f3d0

Browse files
committed
🚀 4.0.3
1 parent 9810bcf commit 448f3d0

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

android/src/main/kotlin/com/courier/courier_flutter/CourierFlutterActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ open class CourierFlutterActivity : FlutterActivity() {
2121
handler.attach(context, intent)
2222

2323
// Setup and run the agent
24-
Courier.agent = CourierAgent.FlutterAndroid(version = "4.0.2")
24+
Courier.agent = CourierAgent.FlutterAndroid(version = "4.0.3")
2525
Courier.initialize(context)
2626

2727
}

android/src/main/kotlin/com/courier/courier_flutter/CourierFlutterFragmentActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ open class CourierFlutterFragmentActivity : FlutterFragmentActivity() {
2121
handler.attach(this, intent)
2222

2323
// Setup and run the agent
24-
Courier.agent = CourierAgent.FlutterAndroid(version = "4.0.2")
24+
Courier.agent = CourierAgent.FlutterAndroid(version = "4.0.3")
2525
Courier.initialize(this)
2626

2727
}

android/src/main/kotlin/com/courier/courier_flutter/CourierPlugin.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ internal class CourierPlugin : FlutterPlugin {
1313
}
1414

1515
init {
16-
Courier.agent = CourierAgent.FlutterAndroid(version = "4.0.2")
16+
Courier.agent = CourierAgent.FlutterAndroid(version = "4.0.3")
1717
}
1818

1919
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {

example/ios/Podfile.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PODS:
22
- courier_flutter (0.0.1):
3-
- Courier_iOS (= 5.5.9)
3+
- Courier_iOS (= 5.6.0)
44
- Flutter
5-
- Courier_iOS (5.5.9)
5+
- Courier_iOS (5.6.0)
66
- Firebase/CoreOnly (11.4.0):
77
- FirebaseCore (= 11.4.0)
88
- Firebase/Messaging (11.4.0):
@@ -19,7 +19,7 @@ PODS:
1919
- FirebaseCoreInternal (~> 11.0)
2020
- GoogleUtilities/Environment (~> 8.0)
2121
- GoogleUtilities/Logger (~> 8.0)
22-
- FirebaseCoreInternal (11.6.0):
22+
- FirebaseCoreInternal (11.7.0):
2323
- "GoogleUtilities/NSData+zlib (~> 8.0)"
2424
- FirebaseInstallations (11.4.0):
2525
- FirebaseCore (~> 11.0)
@@ -122,13 +122,13 @@ EXTERNAL SOURCES:
122122
:path: ".symlinks/plugins/url_launcher_ios/ios"
123123

124124
SPEC CHECKSUMS:
125-
courier_flutter: 98f94e28ad886d47057df709a8400ee2df352f1d
126-
Courier_iOS: 34aff38ea3172af5e8208b2a8504f8f22ab4a1eb
125+
courier_flutter: 766a7469a437cbb965d2d635927ad66b31f4026e
126+
Courier_iOS: 3383c0af5d29a45f66a9e6157a7e4a8a6e17fcde
127127
Firebase: cf1b19f21410b029b6786a54e9764a0cacad3c99
128128
firebase_core: 726c34112998e66d1ddaf4b1bef78ed2dd4b9804
129129
firebase_messaging: a538130cb2bca3ea0ff0892b8c948bd7d20ecaed
130130
FirebaseCore: e0510f1523bc0eb21653cac00792e1e2bd6f1771
131-
FirebaseCoreInternal: d98ab91e2d80a56d7b246856a8885443b302c0c2
131+
FirebaseCoreInternal: d6c17dafc8dc33614733a8b52df78fcb4394c881
132132
FirebaseInstallations: 6ef4a1c7eb2a61ee1f74727d7f6ce2e72acf1414
133133
FirebaseMessaging: f8a160d99c2c2e5babbbcc90c4a3e15db036aee2
134134
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7

ios/Classes/CourierFlutterDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ open class CourierFlutterDelegate: FlutterAppDelegate {
4141
super.init()
4242

4343
// Set the api agent version
44-
Courier.agent = CourierAgent.flutterIOS("4.0.2")
44+
Courier.agent = CourierAgent.flutterIOS("4.0.3")
4545

4646
// Handle notification registration
4747
app.registerForRemoteNotifications()

ios/Classes/CourierFlutterMethodHandler.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class CourierFlutterMethodHandler: NSObject {
1414

1515
// Set the flutter ios user agent
1616
// This ensures all the requests are tagged with this agent
17-
Courier.agent = CourierAgent.flutterIOS("4.0.2")
17+
Courier.agent = CourierAgent.flutterIOS("4.0.3")
1818

1919
}
2020

ios/courier_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Inbox, Push Notification & Preferences for Flutter by Courier
1616
s.source = { :path => '.' }
1717
s.source_files = 'Classes/**/*'
1818
s.dependency 'Flutter'
19-
s.dependency 'Courier_iOS', '5.5.9'
19+
s.dependency 'Courier_iOS', '5.6.0'
2020
s.platform = :ios, '15.0'
2121

2222
# Flutter.framework does not contain a i386 slice.

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: courier_flutter
22
description: Inbox, Push Notifications and Preferences for Flutter
3-
version: 4.0.2
3+
version: 4.0.3
44
homepage: https://courier.com
55

66
environment:

0 commit comments

Comments
 (0)