Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit 0d82757

Browse files
committed
Fix typo and update version.
1 parent dd0eec7 commit 0d82757

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [3.2.1] - 2020-04-20
11+
12+
### Fixed
13+
14+
- Invalid type `Strint` wrong typo
15+
- Missing import
16+
1017
## [3.2.0] - 2020-04-20
1118

1219
### Features

android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotificationHelper.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
import android.graphics.Bitmap;
1818
import android.graphics.BitmapFactory;
1919
import android.graphics.Color;
20+
import android.media.AudioAttributes;
2021
import android.media.RingtoneManager;
2122
import android.net.Uri;
2223
import android.os.Build;
@@ -216,7 +217,7 @@ public void sendToNotificationCentre(Bundle bundle) {
216217
}
217218
}
218219

219-
Strint channel_id = NOTIFICATION_CHANNEL_ID;
220+
String channel_id = NOTIFICATION_CHANNEL_ID;
220221

221222
NotificationCompat.Builder notification = new NotificationCompat.Builder(context, channel_id)
222223
.setContentTitle(title)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-push-notification",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "React Native Local and Remote Notifications",
55
"main": "index",
66
"scripts": {

0 commit comments

Comments
 (0)