Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
RocketChat
Rocket.Chat.ReactNative
Commits
e588c1fc
Unverified
Commit
e588c1fc
authored
Feb 11, 2020
by
Djorkaeff Alexandre
Committed by
GitHub
Feb 11, 2020
Browse files
[FIX] Notification in Android API level less than 24 (#1692)
parent
3683b893
Changes
1
Hide whitespace changes
Inline
Side-by-side
android/app/src/main/java/chat/rocket/reactnative/CustomPushNotification.java
View file @
e588c1fc
...
...
@@ -94,8 +94,12 @@ public class CustomPushNotification extends PushNotification {
Bundle
bundle
=
mNotificationProps
.
asBundle
();
String
notId
=
bundle
.
getString
(
"notId"
,
"1"
);
String
title
=
bundle
.
getString
(
"title"
);
String
message
=
bundle
.
getString
(
"message"
);
notification
.
setContentTitle
(
title
)
.
setContentText
(
message
)
.
setContentIntent
(
intent
)
.
setPriority
(
Notification
.
PRIORITY_HIGH
)
.
setDefaults
(
Notification
.
DEFAULT_ALL
)
...
...
@@ -143,8 +147,14 @@ public class CustomPushNotification extends PushNotification {
int
smallIconResId
=
res
.
getIdentifier
(
"ic_notification"
,
"mipmap"
,
packageName
);
notification
.
setSmallIcon
(
smallIconResId
);
Gson
gson
=
new
Gson
();
Ejson
ejson
=
gson
.
fromJson
(
bundle
.
getString
(
"ejson"
,
"{}"
),
Ejson
.
class
);
notification
.
setSmallIcon
(
smallIconResId
);
if
(
Build
.
VERSION
.
SDK_INT
<
Build
.
VERSION_CODES
.
N
)
{
notification
.
setLargeIcon
(
getAvatar
(
ejson
.
getAvatarUri
()));
}
}
private
void
notificationChannel
(
Notification
.
Builder
notification
)
{
...
...
@@ -179,52 +189,66 @@ public class CustomPushNotification extends PushNotification {
}
private
void
notificationStyle
(
Notification
.
Builder
notification
,
int
notId
,
Bundle
bundle
)
{
Notification
.
MessagingStyle
messageStyle
;
String
title
=
bundle
.
getString
(
"title"
);
Gson
gson
=
new
Gson
();
Ejson
ejson
=
gson
.
fromJson
(
bundle
.
getString
(
"ejson"
,
"{}"
),
Ejson
.
class
);
List
<
Bundle
>
bundles
=
notificationMessages
.
get
(
Integer
.
toString
(
notId
));
if
(
Build
.
VERSION
.
SDK_INT
<
Build
.
VERSION_CODES
.
P
)
{
messageStyle
=
new
Notification
.
MessagingStyle
(
""
);
}
else
{
Person
sender
=
new
Person
.
Builder
()
.
setKey
(
""
)
.
setName
(
""
)
.
build
();
messageStyle
=
new
Notification
.
MessagingStyle
(
sender
);
}
if
(
Build
.
VERSION
.
SDK_INT
<
Build
.
VERSION_CODES
.
N
)
{
Notification
.
InboxStyle
messageStyle
=
new
Notification
.
InboxStyle
();
if
(
bundles
!=
null
)
{
for
(
int
i
=
0
;
i
<
bundles
.
size
();
i
++)
{
Bundle
data
=
bundles
.
get
(
i
);
String
message
=
data
.
getString
(
"message"
);
messageStyle
.
setConversationTitle
(
title
);
messageStyle
.
addLine
(
message
);
}
}
List
<
Bundle
>
bundles
=
notificationMessages
.
get
(
Integer
.
toString
(
notId
));
notification
.
setStyle
(
messageStyle
);
}
else
{
Notification
.
MessagingStyle
messageStyle
;
Gson
gson
=
new
Gson
();
Ejson
ejson
=
gson
.
fromJson
(
bundle
.
getString
(
"ejson"
,
"{}"
),
Ejson
.
class
);
if
(
Build
.
VERSION
.
SDK_INT
<
Build
.
VERSION_CODES
.
P
)
{
messageStyle
=
new
Notification
.
MessagingStyle
(
""
);
}
else
{
Person
sender
=
new
Person
.
Builder
()
.
setKey
(
""
)
.
setName
(
""
)
.
build
();
messageStyle
=
new
Notification
.
MessagingStyle
(
sender
);
}
if
(
bundles
!=
null
)
{
for
(
int
i
=
0
;
i
<
bundles
.
size
();
i
++)
{
Bundle
data
=
bundles
.
get
(
i
);
long
timestamp
=
data
.
getLong
(
"time"
);
String
message
=
data
.
getString
(
"message"
);
String
username
=
data
.
getString
(
"username"
);
String
senderId
=
data
.
getString
(
"senderId"
);
String
avatarUri
=
data
.
getString
(
"avatarUri"
);
String
m
=
extractMessage
(
message
,
ejson
);
if
(
Build
.
VERSION
.
SDK_INT
<
Build
.
VERSION_CODES
.
P
)
{
messageStyle
.
addMessage
(
m
,
timestamp
,
username
);
}
else
{
Person
sender
=
new
Person
.
Builder
()
.
setKey
(
senderId
)
.
setName
(
username
)
.
setIcon
(
Icon
.
createWithBitmap
(
getAvatar
(
avatarUri
)))
.
build
();
messageStyle
.
addMessage
(
m
,
timestamp
,
sender
);
String
title
=
bundle
.
getString
(
"title"
);
messageStyle
.
setConversationTitle
(
title
);
if
(
bundles
!=
null
)
{
for
(
int
i
=
0
;
i
<
bundles
.
size
();
i
++)
{
Bundle
data
=
bundles
.
get
(
i
);
long
timestamp
=
data
.
getLong
(
"time"
);
String
message
=
data
.
getString
(
"message"
);
String
username
=
data
.
getString
(
"username"
);
String
senderId
=
data
.
getString
(
"senderId"
);
String
avatarUri
=
data
.
getString
(
"avatarUri"
);
String
m
=
extractMessage
(
message
,
ejson
);
if
(
Build
.
VERSION
.
SDK_INT
<
Build
.
VERSION_CODES
.
P
)
{
messageStyle
.
addMessage
(
m
,
timestamp
,
username
);
}
else
{
Person
sender
=
new
Person
.
Builder
()
.
setKey
(
senderId
)
.
setName
(
username
)
.
setIcon
(
Icon
.
createWithBitmap
(
getAvatar
(
avatarUri
)))
.
build
();
messageStyle
.
addMessage
(
m
,
timestamp
,
sender
);
}
}
}
}
notification
.
setStyle
(
messageStyle
);
notification
.
setStyle
(
messageStyle
);
}
}
private
void
notificationReply
(
Notification
.
Builder
notification
,
int
notificationId
,
Bundle
bundle
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment