Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ open class CourierFlutterActivity : FlutterActivity() {
super.onCreate(savedInstanceState)

// Setup and run the agent
Courier.agent = CourierAgent.FlutterAndroid(version = "5.0.1")
Courier.agent = CourierAgent.FlutterAndroid(version = "5.0.2")
Courier.initialize(context)

// Handle system events
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ open class CourierFlutterFragmentActivity : FlutterFragmentActivity() {
super.onCreate(savedInstanceState)

// Setup and run the agent
Courier.agent = CourierAgent.FlutterAndroid(version = "5.0.1")
Courier.agent = CourierAgent.FlutterAndroid(version = "5.0.2")
Courier.initialize(this)

// Handle system events
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal class CourierPlugin : FlutterPlugin {
}

init {
Courier.agent = CourierAgent.FlutterAndroid(version = "5.0.1")
Courier.agent = CourierAgent.FlutterAndroid(version = "5.0.2")
}

override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Demonstrates how to use the courier_flutter plugin.
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 1.0.0+33
version: 1.0.0+34

environment:
sdk: '>=3.3.0 <4.0.0'
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/CourierFlutterDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ open class CourierFlutterDelegate: FlutterAppDelegate {
super.init()

// Set the api agent version
Courier.agent = CourierAgent.flutterIOS("5.0.1")
Courier.agent = CourierAgent.flutterIOS("5.0.2")

// Handle notification registration
app.registerForRemoteNotifications()
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/CourierFlutterMethodHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class CourierFlutterMethodHandler: NSObject {

// Set the flutter ios user agent
// This ensures all the requests are tagged with this agent
Courier.agent = CourierAgent.flutterIOS("5.0.1")
Courier.agent = CourierAgent.flutterIOS("5.0.2")

}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: courier_flutter
description: Inbox, Push Notifications and Preferences for Flutter
version: 5.0.1
version: 5.0.2
homepage: https://courier.com

environment:
Expand Down
Loading