Skip to content

Commit

Permalink
🚀 5.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemilla committed Feb 3, 2025
1 parent 27da26f commit 20ab2d1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ dependencies {
implementation 'com.google.code.gson:gson:2.11.0'

// Courier Core SDK
api 'com.github.trycourier:courier-android:5.1.8'
api 'com.github.trycourier:courier-android:5.1.10'
api 'androidx.recyclerview:recyclerview:1.3.2'

}
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/java/com/courierreactnative/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import com.facebook.react.modules.core.DeviceEventManagerModule
import com.google.gson.GsonBuilder

internal object Utils {
val COURIER_AGENT = CourierAgent.ReactNativeAndroid(version = "5.4.0")
val COURIER_AGENT = CourierAgent.ReactNativeAndroid(version = "5.4.1")
}

internal fun ReactContext.sendEvent(eventName: String, value: Any?) {
Expand Down
2 changes: 1 addition & 1 deletion example/src/pages/inbox/InboxStyled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const InboxStyled = () => {
},
readingSwipeActionStyle: {
read: {
icon: Platform.OS === 'ios' ? 'ionc_undo' : 'icon_undo',
icon: Platform.OS === 'ios' ? 'icon_undo' : 'icon_undo',
color: styles.Colors.subtitle
},
unread: {
Expand Down
2 changes: 1 addition & 1 deletion ios/CourierReactNativeDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ - (id) init {
if (self) {

// Set the user agent
Courier.agent = [CourierAgent reactNativeIOS:@"5.4.0"];
Courier.agent = [CourierAgent reactNativeIOS:@"5.4.1"];

// Register for remote notifications
UIApplication *app = [UIApplication sharedApplication];
Expand Down
2 changes: 1 addition & 1 deletion ios/CourierReactNativeEventEmitter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal class CourierReactNativeEventEmitter: RCTEventEmitter {

// Set the user agent
// Used to know the platform performing requests
Courier.agent = CourierAgent.reactNativeIOS("5.4.0")
Courier.agent = CourierAgent.reactNativeIOS("5.4.1")

}

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@trycourier/courier-react-native",
"version": "5.4.0",
"version": "5.4.1",
"description": "Inbox, Push Notifications, and Preferences for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit 20ab2d1

Please sign in to comment.