This repository was archived by the owner on Jan 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
android/src/main/java/com/dieam/reactnativepushnotification/modules Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1717import android .graphics .Bitmap ;
1818import android .graphics .BitmapFactory ;
1919import android .graphics .Color ;
20+ import android .media .AudioAttributes ;
2021import android .media .RingtoneManager ;
2122import android .net .Uri ;
2223import 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 )
Original file line number Diff line number Diff line change 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" : {
You can’t perform that action at this time.
0 commit comments