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.
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 3.2.1] - 2020-04-20
11
+
12
+ ### Fixed
13
+
14
+ - Invalid type ` Strint ` wrong typo
15
+ - Missing import
16
+
10
17
## [ 3.2.0] - 2020-04-20
11
18
12
19
### Features
Original file line number Diff line number Diff line change 17
17
import android .graphics .Bitmap ;
18
18
import android .graphics .BitmapFactory ;
19
19
import android .graphics .Color ;
20
+ import android .media .AudioAttributes ;
20
21
import android .media .RingtoneManager ;
21
22
import android .net .Uri ;
22
23
import android .os .Build ;
@@ -216,7 +217,7 @@ public void sendToNotificationCentre(Bundle bundle) {
216
217
}
217
218
}
218
219
219
- Strint channel_id = NOTIFICATION_CHANNEL_ID ;
220
+ String channel_id = NOTIFICATION_CHANNEL_ID ;
220
221
221
222
NotificationCompat .Builder notification = new NotificationCompat .Builder (context , channel_id )
222
223
.setContentTitle (title )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-push-notification" ,
3
- "version" : " 3.2.0 " ,
3
+ "version" : " 3.2.1 " ,
4
4
"description" : " React Native Local and Remote Notifications" ,
5
5
"main" : " index" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments