Skip to content

Commit 9e7a3de

Browse files
committed
android: fix setFontOverride on old arch ([sc-105516])
1 parent c3a9e85 commit 9e7a3de

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
**Expo**
55
- Fixed a build issue on iOS after pre-building with Expo SDK 53.
66

7+
**Messaging**
8+
- Fixed an issue on Android (old arch only) where `setFontOverride` was not working.
9+
10+
711
10.1.1
812
----
913

@@ -21,7 +25,7 @@
2125
- Added support for Expo SDK 53. Since, as of writing, it is still under preview version, this may not works in future versions.
2226

2327
**Core**
24-
- Fixed an issue where opting the SDK after been opted-out would unexpectedly reset default configurations, such as Do Not Disturb setting.
28+
- Fixed an issue where opting the SDK after being opted-out would unexpectedly reset default configurations, such as Do Not Disturb setting.
2529

2630

2731
10.0.1

android/src/oldarch/java/com/batch/batch_rn/RNBatchModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public void messaging_disableDoNotDisturbAndShowPendingMessage(Promise promise)
147147
}
148148

149149
@ReactMethod
150-
public void messaging_setTypefaceOverride(@Nullable String normalTypefaceName, @Nullable String boldTypefaceName, @Nullable String italicFontName, @Nullable String italicBoldFontName, Promise promise) {
150+
public void messaging_setFontOverride(@Nullable String normalTypefaceName, @Nullable String boldTypefaceName, @Nullable String italicFontName, @Nullable String italicBoldFontName, Promise promise) {
151151
impl.messaging_setTypefaceOverride(normalTypefaceName, boldTypefaceName, promise);
152152
}
153153

0 commit comments

Comments
 (0)