Skip to content

Commit 3954d22

Browse files
committed
🚀 3.4.0
1 parent 3d64ca1 commit 3954d22

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
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 = "3.3.0")
16+
Courier.agent = CourierAgent.FlutterAndroid(version = "3.4.0")
1717
}
1818

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

example/ios/Runner/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import UIKit
22
import Flutter
33
import courier_flutter
44

5-
@UIApplicationMain
5+
@main
66
@objc class AppDelegate: CourierFlutterDelegate {
77

88
override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ packages:
6363
path: ".."
6464
relative: true
6565
source: path
66-
version: "3.2.0"
66+
version: "3.3.0"
6767
crypto:
6868
dependency: transitive
6969
description:

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Demonstrates how to use the courier_flutter plugin.
55
# pub.dev using `flutter pub publish`. This is preferred for private packages.
66
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
77

8-
version: 1.0.0+12
8+
version: 1.0.0+13
99

1010
environment:
1111
sdk: '>=2.18.1 <3.0.0'

ios/Classes/CourierFlutterDelegate.swift

Lines changed: 1 addition & 1 deletion
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("3.3.0")
44+
Courier.agent = CourierAgent.flutterIOS("3.4.0")
4545

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

ios/Classes/CourierFlutterMethodHandler.swift

Lines changed: 1 addition & 1 deletion
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("3.3.0")
17+
Courier.agent = CourierAgent.flutterIOS("3.4.0")
1818

1919
}
2020

pubspec.yaml

Lines changed: 1 addition & 1 deletion
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: 3.3.0
3+
version: 3.4.0
44
homepage: https://courier.com
55

66
environment:

0 commit comments

Comments
 (0)