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

Commit 8664380

Browse files
committed
setNotificationSilent()
1 parent 624dd15 commit 8664380

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

android/build.gradle

+1-6
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,9 @@ android {
4545
}
4646

4747
dependencies {
48-
// Use either AndroidX library names or old/support library names based on major version of support lib
49-
def supportLibVersion = safeExtGet('supportLibVersion', '27.1.1')
50-
def supportLibMajorVersion = supportLibVersion.split('\\.')[0] as int
51-
def appCompatLibName = (supportLibMajorVersion < 20) ? "androidx.appcompat:appcompat" : "com.android.support:appcompat-v7"
52-
5348
implementation fileTree(dir: 'libs', include: ['*.jar'])
5449
testImplementation 'junit:junit:4.12'
55-
implementation "$appCompatLibName:$supportLibVersion"
50+
implementation "androidx.appcompat:appcompat:1.2.0"
5651
implementation 'com.facebook.react:react-native:+'
5752
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
5853
implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '21.1.0')}"

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

+2
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,8 @@ public void sendToNotificationCentreWithPicture(Bundle bundle, Bitmap largeIconB
431431
soundUri = getSoundUri(soundName);
432432

433433
notification.setSound(soundUri);
434+
} else {
435+
notification.setNotificationSilent();
434436
}
435437

436438
if (soundUri == null || Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

0 commit comments

Comments
 (0)