Skip to content

Commit

Permalink
Release version 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jerielng committed Aug 9, 2023
1 parent 0b7bd06 commit fe05350
Show file tree
Hide file tree
Showing 9 changed files with 3,307 additions and 3,499 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 1.1.2

##### Added
- Added Android support for the following configuration fields:
- `androidPushNotificationHtmlRenderingEnabled, androidNotificationSmallIcon, androidNotificationLargeIcon, androidNotificationAccentColor`
- Added support for configuring a fallback Firebase Messaging Service on Android via `androidFirebaseMessagingFallbackServiceEnabled` and `androidFirebaseMessagingFallbackServiceClasspath`.
- For example, if your fallback Firebase Messaging Service was `expo.modules.notifications.service.ExpoFirebaseMessagingService`, then your configuration would need to include:
```
"androidFirebaseMessagingFallbackServiceEnabled": true,
"androidFirebaseMessagingFallbackServiceClasspath": "expo.modules.notifications.service.ExpoFirebaseMessagingService",
```
- You can find the proper fallback classpath in your Android merged `AndroidManifest.xml` file.
- Updated the sample app with version `6.0.1` of the the Braze React Native SDK.
- This version demonstrates usage of the New Architecture and the Braze SDK as a Turbo Module.

# 1.1.1

##### Fixed
Expand Down
16 changes: 14 additions & 2 deletions example/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,22 @@
"favicon": "./assets/images/favicon.png"
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": true
},
"android": {
"newArchEnabled": true
}
}
],
[
"@braze/expo-plugin",
{
"androidApiKey": "c131cc0e-92ea-4c35-a1d6-7c2d1adb5907",
"iosApiKey": "e1527f34-f46d-4bf5-8aab-e7e548057057",
"iosApiKey": "43a31d1e-c2ac-4412-b473-d0b6b46e2747",
"baseUrl": "sondheim.braze.com",
"enableSdkAuthentication": true,
"logLevel": 0,
Expand All @@ -53,7 +64,8 @@
"enableBrazeIosPush": true,
"enableFirebaseCloudMessaging": true,
"firebaseCloudMessagingSenderId": "531790618696",
"androidHandlePushDeepLinksAutomatically": true
"androidHandlePushDeepLinksAutomatically": true,
"androidNotificationAccentColor": "#ff112233"
}
]
]
Expand Down
Loading

0 comments on commit fe05350

Please sign in to comment.