Notification Channel Vibration and Ringtone is Not Working












0














I have a problem with my notification channel that is not working for Vibration and Custom Ringtone. I hope I have set everything correctly but still, only the Push Notification is received without vibration and sound. I called notification before the notify() call Click here to know more



My Question is:




  1. Is that any additional settings that I have to do for Custome Ringtone and Vibration?


  2. Any Problem with AudioAttributes?



Here is My code



Uri uri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + "://" + mContext.getPackageName() + "/" + R.raw.sms_ringtone);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context).setSmallIcon(R.drawable.ic_stat_dog) .setContentTitle(context.getString(R.string.app_name)).setContentText(message) .setOngoing(false).setAutoCancel(true).setDefaults(Notification.DEFAULT_LIGHTS.setPriority(Notification.PRIORITY_MAX).setLights(0xff00ff00, 300, 1000).setVibrate(new long{
1000, 1000, 1000, 1000, 1000
}).setStyle(new NotificationCompat.BigTextStyle().bigText(message));

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
int importance = NotificationManager.IMPORTANCE_HIGH;
NotificationChannel notificationChannel = new NotificationChannel(Constants.NOTIFICATION_CHANNEL_ID, Constants.NOTIFICATION_CHANNEL_NAME, importance);
notificationChannel.enableLights(true);
notificationChannel.setLightColor(Color.RED);
notificationChannel.enableVibration(true);
AudioAttributes audioAttributes = new AudioAttributes.Builder()
.setUsage(AudioAttributes.USAGE_NOTIFICATION)
.build();

notificationChannel.setSound(uri, audioAttributes);
notificationChannel.setVibrationPattern(new long{100, 200, 300, 400, 500, 400, 300, 200, 400});
assert notificationManager != null;
mBuilder.setChannelId(Constants.NOTIFICATION_CHANNEL_ID);
notificationManager.createNotificationChannel(notificationChannel);
}
mBuilder.setSound(getRingtoneUri());
mBuilder.setContentIntent(pendingIntent);
notificationManager.notify(gcmMessageId, mBuilder.build());









share|improve this question





























    0














    I have a problem with my notification channel that is not working for Vibration and Custom Ringtone. I hope I have set everything correctly but still, only the Push Notification is received without vibration and sound. I called notification before the notify() call Click here to know more



    My Question is:




    1. Is that any additional settings that I have to do for Custome Ringtone and Vibration?


    2. Any Problem with AudioAttributes?



    Here is My code



    Uri uri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + "://" + mContext.getPackageName() + "/" + R.raw.sms_ringtone);
    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context).setSmallIcon(R.drawable.ic_stat_dog) .setContentTitle(context.getString(R.string.app_name)).setContentText(message) .setOngoing(false).setAutoCancel(true).setDefaults(Notification.DEFAULT_LIGHTS.setPriority(Notification.PRIORITY_MAX).setLights(0xff00ff00, 300, 1000).setVibrate(new long{
    1000, 1000, 1000, 1000, 1000
    }).setStyle(new NotificationCompat.BigTextStyle().bigText(message));

    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
    int importance = NotificationManager.IMPORTANCE_HIGH;
    NotificationChannel notificationChannel = new NotificationChannel(Constants.NOTIFICATION_CHANNEL_ID, Constants.NOTIFICATION_CHANNEL_NAME, importance);
    notificationChannel.enableLights(true);
    notificationChannel.setLightColor(Color.RED);
    notificationChannel.enableVibration(true);
    AudioAttributes audioAttributes = new AudioAttributes.Builder()
    .setUsage(AudioAttributes.USAGE_NOTIFICATION)
    .build();

    notificationChannel.setSound(uri, audioAttributes);
    notificationChannel.setVibrationPattern(new long{100, 200, 300, 400, 500, 400, 300, 200, 400});
    assert notificationManager != null;
    mBuilder.setChannelId(Constants.NOTIFICATION_CHANNEL_ID);
    notificationManager.createNotificationChannel(notificationChannel);
    }
    mBuilder.setSound(getRingtoneUri());
    mBuilder.setContentIntent(pendingIntent);
    notificationManager.notify(gcmMessageId, mBuilder.build());









    share|improve this question



























      0












      0








      0







      I have a problem with my notification channel that is not working for Vibration and Custom Ringtone. I hope I have set everything correctly but still, only the Push Notification is received without vibration and sound. I called notification before the notify() call Click here to know more



      My Question is:




      1. Is that any additional settings that I have to do for Custome Ringtone and Vibration?


      2. Any Problem with AudioAttributes?



      Here is My code



      Uri uri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + "://" + mContext.getPackageName() + "/" + R.raw.sms_ringtone);
      NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context).setSmallIcon(R.drawable.ic_stat_dog) .setContentTitle(context.getString(R.string.app_name)).setContentText(message) .setOngoing(false).setAutoCancel(true).setDefaults(Notification.DEFAULT_LIGHTS.setPriority(Notification.PRIORITY_MAX).setLights(0xff00ff00, 300, 1000).setVibrate(new long{
      1000, 1000, 1000, 1000, 1000
      }).setStyle(new NotificationCompat.BigTextStyle().bigText(message));

      if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
      int importance = NotificationManager.IMPORTANCE_HIGH;
      NotificationChannel notificationChannel = new NotificationChannel(Constants.NOTIFICATION_CHANNEL_ID, Constants.NOTIFICATION_CHANNEL_NAME, importance);
      notificationChannel.enableLights(true);
      notificationChannel.setLightColor(Color.RED);
      notificationChannel.enableVibration(true);
      AudioAttributes audioAttributes = new AudioAttributes.Builder()
      .setUsage(AudioAttributes.USAGE_NOTIFICATION)
      .build();

      notificationChannel.setSound(uri, audioAttributes);
      notificationChannel.setVibrationPattern(new long{100, 200, 300, 400, 500, 400, 300, 200, 400});
      assert notificationManager != null;
      mBuilder.setChannelId(Constants.NOTIFICATION_CHANNEL_ID);
      notificationManager.createNotificationChannel(notificationChannel);
      }
      mBuilder.setSound(getRingtoneUri());
      mBuilder.setContentIntent(pendingIntent);
      notificationManager.notify(gcmMessageId, mBuilder.build());









      share|improve this question















      I have a problem with my notification channel that is not working for Vibration and Custom Ringtone. I hope I have set everything correctly but still, only the Push Notification is received without vibration and sound. I called notification before the notify() call Click here to know more



      My Question is:




      1. Is that any additional settings that I have to do for Custome Ringtone and Vibration?


      2. Any Problem with AudioAttributes?



      Here is My code



      Uri uri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + "://" + mContext.getPackageName() + "/" + R.raw.sms_ringtone);
      NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context).setSmallIcon(R.drawable.ic_stat_dog) .setContentTitle(context.getString(R.string.app_name)).setContentText(message) .setOngoing(false).setAutoCancel(true).setDefaults(Notification.DEFAULT_LIGHTS.setPriority(Notification.PRIORITY_MAX).setLights(0xff00ff00, 300, 1000).setVibrate(new long{
      1000, 1000, 1000, 1000, 1000
      }).setStyle(new NotificationCompat.BigTextStyle().bigText(message));

      if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
      int importance = NotificationManager.IMPORTANCE_HIGH;
      NotificationChannel notificationChannel = new NotificationChannel(Constants.NOTIFICATION_CHANNEL_ID, Constants.NOTIFICATION_CHANNEL_NAME, importance);
      notificationChannel.enableLights(true);
      notificationChannel.setLightColor(Color.RED);
      notificationChannel.enableVibration(true);
      AudioAttributes audioAttributes = new AudioAttributes.Builder()
      .setUsage(AudioAttributes.USAGE_NOTIFICATION)
      .build();

      notificationChannel.setSound(uri, audioAttributes);
      notificationChannel.setVibrationPattern(new long{100, 200, 300, 400, 500, 400, 300, 200, 400});
      assert notificationManager != null;
      mBuilder.setChannelId(Constants.NOTIFICATION_CHANNEL_ID);
      notificationManager.createNotificationChannel(notificationChannel);
      }
      mBuilder.setSound(getRingtoneUri());
      mBuilder.setContentIntent(pendingIntent);
      notificationManager.notify(gcmMessageId, mBuilder.build());






      android push-notification notification-channel






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 '18 at 7:36









      Aniruddh Parihar

      2,15911027




      2,15911027










      asked Nov 21 '18 at 7:15









      Jenifer Ramsingh

      13




      13





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406974%2fnotification-channel-vibration-and-ringtone-is-not-working%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53406974%2fnotification-channel-vibration-and-ringtone-is-not-working%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Wiesbaden

          Marschland

          Dieringhausen