Skip to content

Commit

Permalink
Release version 1.17.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Bucimis committed Oct 16, 2019
1 parent 7323823 commit 910dc4d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.17.4

##### Fixed
- Removed a support library reference in `AppboyReactBridge.java` that caused Androidx compatibility issues.

## 1.17.3

##### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="https://github.com/Appboy/appboy-react-sdk/blob/master/braze-logo.png" width="300" title="Braze Logo" />
<img src="https://raw.githubusercontent.com/Appboy/appboy-react-sdk/master/braze-logo.png" width="300" title="Braze Logo" />

# Braze React SDK

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.appboy.reactbridge;

import android.content.Intent;
import android.support.annotation.Nullable;
import android.util.Log;

import com.appboy.Appboy;
Expand Down Expand Up @@ -587,7 +586,7 @@ private void logContentCardImpression(String id) {
}
}

private @Nullable Card getCardById(String id) {
private Card getCardById(String id) {
for (Card card : mContentCards) {
if (card.getId().equals(id)) {
return card;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-appboy-sdk",
"version": "1.17.3",
"version": "1.17.4",
"description": "Braze SDK for React Native.",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 910dc4d

Please sign in to comment.