Android - Notification: Use of stream types is deprecated for operations other than volume control, but I'm using Notification channelsFailed to post notification on channel “null” Target Api is 26Android: catching application exitHow to make the volume control to control the notification volume?How to open dialog styled activity from notification without previous activity closing?I am trying to set alarm on specific time using alarm manager but alarm initiated instantly?start the same activity after closing itAndroid - replacement for deprecated Notification classAndroid notification not showing more than 3 actionsIncoming call notification volume control streamAndroid 8.1 W/Notification: Use of stream types is deprecatedGet notification channel (or notification settings) for other app

Email Account under attack (really) - anything I can do?

Shell script not opening as desktop application

Is it possible to make sharp wind that can cut stuff from afar?

How old can references or sources in a thesis be?

Why linear maps act like matrix multiplication?

Python: Add Submenu

Why Is Death Allowed In the Matrix?

Motorized valve interfering with button?

Can I make popcorn with any corn?

I probably found a bug with the sudo apt install function

What are these boxed doors outside store fronts in New York?

How can bays and straits be determined in a procedurally generated map?

How to make payment on the internet without leaving a money trail?

Pronouncing Dictionary.com's W.O.D "vade mecum" in English

The use of multiple foreign keys on same column in SQL Server

Is there any sparring that doesn't involve punches to the head?

Why are only specific transaction types accepted into the mempool?

How long does it take to type this?

The Meaning of "Simply a child of her times"

How to report a triplet of septets in NMR tabulation?

"You are your self first supporter", a more proper way to say it

Why has Russell's definition of numbers using equivalence classes been finally abandoned? ( If it has actually been abandoned).

XeLaTeX and pdfLaTeX ignore hyphenation

How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?



Android - Notification: Use of stream types is deprecated for operations other than volume control, but I'm using Notification channels


Failed to post notification on channel “null” Target Api is 26Android: catching application exitHow to make the volume control to control the notification volume?How to open dialog styled activity from notification without previous activity closing?I am trying to set alarm on specific time using alarm manager but alarm initiated instantly?start the same activity after closing itAndroid - replacement for deprecated Notification classAndroid notification not showing more than 3 actionsIncoming call notification volume control streamAndroid 8.1 W/Notification: Use of stream types is deprecatedGet notification channel (or notification settings) for other app






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I understand that some answers like this one seem to have covered this, but I believe I'm following the procedure exactly and still get the warning. In my app, I want one channel for the foreground notification that's always there and another for push notifications to go through separately. Here's my code:



private void startNotifications()
if (Build.VERSION.SDK_INT >= 26)
NotificationChannel channel = new NotificationChannel(getResources().getString(R.string.ForegroundID),
getResources().getString(R.string.foreground_channel_name), NotificationManager.IMPORTANCE_LOW);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
channel.setDescription(getResources().getString(R.string.foreground_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
//TODO Another nonsense warning over here, is there a way to fix it?
notificationManager.createNotificationChannel(channel);

NotificationChannel channel2 = new NotificationChannel(getResources().getString(R.string.PushID),
getResources().getString(R.string.push_channel_name), NotificationManager.IMPORTANCE_HIGH);
channel.setDescription(getResources().getString(R.string.push_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
notificationManager.createNotificationChannel(channel2);

Notification foregroundNotification = createNotification();
//Must be called within 5 seconds of Service being started or else Android will crash the app
startForeground(ONGOING_NOTIFICATION_ID, foregroundNotification);



It calls



private Notification createNotification()
String[] initialData = getNotificationInfo();
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent activityPendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);

Intent closeService = new Intent(this, MainActivity.class);
closeService.setAction(getResources().getString(R.string.IntentAction_CloseService));
closeService.putExtra(getResources().getString(R.string.IntentExtra_CloseService), getResources().getString(R.string.Intent_CloseFromNotification));
PendingIntent closePendingIntent = PendingIntent.getActivity(this, 0, closeService, 0);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, getResources().getString(R.string.ForegroundID))
.setSmallIcon(R.drawable.pic_small)
.setContentTitle(initialData[0])
.setContentText(initialData[1])
.setContentIntent(activityPendingIntent)
.setShowWhen(false)
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setCategory(NotificationCompat.CATEGORY_SERVICE)
.setColor(getResources().getColor(R.color.picGray))
.setSound(defaultSound)
.addAction(R.drawable.pic_small, getResources().getString(R.string.end_service_text), closePendingIntent);
return builder.build();



And throughout the lifescycle of the app, I update the foreground notification with:



private void updateForegroundNotification ()
Log.i("BLE_Service", "Updating Foreground Notification!");
Notification updatedNotification = createNotification();
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(ONGOING_NOTIFICATION_ID, updatedNotification);



But whenever the foreground notification updates, I get the warning about stream types being deprecated and setSound() and all that. What's going on?










share|improve this question






























    0















    I understand that some answers like this one seem to have covered this, but I believe I'm following the procedure exactly and still get the warning. In my app, I want one channel for the foreground notification that's always there and another for push notifications to go through separately. Here's my code:



    private void startNotifications()
    if (Build.VERSION.SDK_INT >= 26)
    NotificationChannel channel = new NotificationChannel(getResources().getString(R.string.ForegroundID),
    getResources().getString(R.string.foreground_channel_name), NotificationManager.IMPORTANCE_LOW);
    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    channel.setDescription(getResources().getString(R.string.foreground_channel_description));
    channel.setShowBadge(false);
    channel.setSound(defaultSound, null);
    //TODO Another nonsense warning over here, is there a way to fix it?
    notificationManager.createNotificationChannel(channel);

    NotificationChannel channel2 = new NotificationChannel(getResources().getString(R.string.PushID),
    getResources().getString(R.string.push_channel_name), NotificationManager.IMPORTANCE_HIGH);
    channel.setDescription(getResources().getString(R.string.push_channel_description));
    channel.setShowBadge(false);
    channel.setSound(defaultSound, null);
    notificationManager.createNotificationChannel(channel2);

    Notification foregroundNotification = createNotification();
    //Must be called within 5 seconds of Service being started or else Android will crash the app
    startForeground(ONGOING_NOTIFICATION_ID, foregroundNotification);



    It calls



    private Notification createNotification()
    String[] initialData = getNotificationInfo();
    Intent notificationIntent = new Intent(this, MainActivity.class);
    PendingIntent activityPendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);

    Intent closeService = new Intent(this, MainActivity.class);
    closeService.setAction(getResources().getString(R.string.IntentAction_CloseService));
    closeService.putExtra(getResources().getString(R.string.IntentExtra_CloseService), getResources().getString(R.string.Intent_CloseFromNotification));
    PendingIntent closePendingIntent = PendingIntent.getActivity(this, 0, closeService, 0);
    NotificationCompat.Builder builder = new NotificationCompat.Builder(this, getResources().getString(R.string.ForegroundID))
    .setSmallIcon(R.drawable.pic_small)
    .setContentTitle(initialData[0])
    .setContentText(initialData[1])
    .setContentIntent(activityPendingIntent)
    .setShowWhen(false)
    .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
    .setPriority(NotificationCompat.PRIORITY_DEFAULT)
    .setCategory(NotificationCompat.CATEGORY_SERVICE)
    .setColor(getResources().getColor(R.color.picGray))
    .setSound(defaultSound)
    .addAction(R.drawable.pic_small, getResources().getString(R.string.end_service_text), closePendingIntent);
    return builder.build();



    And throughout the lifescycle of the app, I update the foreground notification with:



    private void updateForegroundNotification ()
    Log.i("BLE_Service", "Updating Foreground Notification!");
    Notification updatedNotification = createNotification();
    NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    mNotificationManager.notify(ONGOING_NOTIFICATION_ID, updatedNotification);



    But whenever the foreground notification updates, I get the warning about stream types being deprecated and setSound() and all that. What's going on?










    share|improve this question


























      0












      0








      0








      I understand that some answers like this one seem to have covered this, but I believe I'm following the procedure exactly and still get the warning. In my app, I want one channel for the foreground notification that's always there and another for push notifications to go through separately. Here's my code:



      private void startNotifications()
      if (Build.VERSION.SDK_INT >= 26)
      NotificationChannel channel = new NotificationChannel(getResources().getString(R.string.ForegroundID),
      getResources().getString(R.string.foreground_channel_name), NotificationManager.IMPORTANCE_LOW);
      NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
      channel.setDescription(getResources().getString(R.string.foreground_channel_description));
      channel.setShowBadge(false);
      channel.setSound(defaultSound, null);
      //TODO Another nonsense warning over here, is there a way to fix it?
      notificationManager.createNotificationChannel(channel);

      NotificationChannel channel2 = new NotificationChannel(getResources().getString(R.string.PushID),
      getResources().getString(R.string.push_channel_name), NotificationManager.IMPORTANCE_HIGH);
      channel.setDescription(getResources().getString(R.string.push_channel_description));
      channel.setShowBadge(false);
      channel.setSound(defaultSound, null);
      notificationManager.createNotificationChannel(channel2);

      Notification foregroundNotification = createNotification();
      //Must be called within 5 seconds of Service being started or else Android will crash the app
      startForeground(ONGOING_NOTIFICATION_ID, foregroundNotification);



      It calls



      private Notification createNotification()
      String[] initialData = getNotificationInfo();
      Intent notificationIntent = new Intent(this, MainActivity.class);
      PendingIntent activityPendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);

      Intent closeService = new Intent(this, MainActivity.class);
      closeService.setAction(getResources().getString(R.string.IntentAction_CloseService));
      closeService.putExtra(getResources().getString(R.string.IntentExtra_CloseService), getResources().getString(R.string.Intent_CloseFromNotification));
      PendingIntent closePendingIntent = PendingIntent.getActivity(this, 0, closeService, 0);
      NotificationCompat.Builder builder = new NotificationCompat.Builder(this, getResources().getString(R.string.ForegroundID))
      .setSmallIcon(R.drawable.pic_small)
      .setContentTitle(initialData[0])
      .setContentText(initialData[1])
      .setContentIntent(activityPendingIntent)
      .setShowWhen(false)
      .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
      .setPriority(NotificationCompat.PRIORITY_DEFAULT)
      .setCategory(NotificationCompat.CATEGORY_SERVICE)
      .setColor(getResources().getColor(R.color.picGray))
      .setSound(defaultSound)
      .addAction(R.drawable.pic_small, getResources().getString(R.string.end_service_text), closePendingIntent);
      return builder.build();



      And throughout the lifescycle of the app, I update the foreground notification with:



      private void updateForegroundNotification ()
      Log.i("BLE_Service", "Updating Foreground Notification!");
      Notification updatedNotification = createNotification();
      NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
      mNotificationManager.notify(ONGOING_NOTIFICATION_ID, updatedNotification);



      But whenever the foreground notification updates, I get the warning about stream types being deprecated and setSound() and all that. What's going on?










      share|improve this question
















      I understand that some answers like this one seem to have covered this, but I believe I'm following the procedure exactly and still get the warning. In my app, I want one channel for the foreground notification that's always there and another for push notifications to go through separately. Here's my code:



      private void startNotifications()
      if (Build.VERSION.SDK_INT >= 26)
      NotificationChannel channel = new NotificationChannel(getResources().getString(R.string.ForegroundID),
      getResources().getString(R.string.foreground_channel_name), NotificationManager.IMPORTANCE_LOW);
      NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
      channel.setDescription(getResources().getString(R.string.foreground_channel_description));
      channel.setShowBadge(false);
      channel.setSound(defaultSound, null);
      //TODO Another nonsense warning over here, is there a way to fix it?
      notificationManager.createNotificationChannel(channel);

      NotificationChannel channel2 = new NotificationChannel(getResources().getString(R.string.PushID),
      getResources().getString(R.string.push_channel_name), NotificationManager.IMPORTANCE_HIGH);
      channel.setDescription(getResources().getString(R.string.push_channel_description));
      channel.setShowBadge(false);
      channel.setSound(defaultSound, null);
      notificationManager.createNotificationChannel(channel2);

      Notification foregroundNotification = createNotification();
      //Must be called within 5 seconds of Service being started or else Android will crash the app
      startForeground(ONGOING_NOTIFICATION_ID, foregroundNotification);



      It calls



      private Notification createNotification()
      String[] initialData = getNotificationInfo();
      Intent notificationIntent = new Intent(this, MainActivity.class);
      PendingIntent activityPendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);

      Intent closeService = new Intent(this, MainActivity.class);
      closeService.setAction(getResources().getString(R.string.IntentAction_CloseService));
      closeService.putExtra(getResources().getString(R.string.IntentExtra_CloseService), getResources().getString(R.string.Intent_CloseFromNotification));
      PendingIntent closePendingIntent = PendingIntent.getActivity(this, 0, closeService, 0);
      NotificationCompat.Builder builder = new NotificationCompat.Builder(this, getResources().getString(R.string.ForegroundID))
      .setSmallIcon(R.drawable.pic_small)
      .setContentTitle(initialData[0])
      .setContentText(initialData[1])
      .setContentIntent(activityPendingIntent)
      .setShowWhen(false)
      .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
      .setPriority(NotificationCompat.PRIORITY_DEFAULT)
      .setCategory(NotificationCompat.CATEGORY_SERVICE)
      .setColor(getResources().getColor(R.color.picGray))
      .setSound(defaultSound)
      .addAction(R.drawable.pic_small, getResources().getString(R.string.end_service_text), closePendingIntent);
      return builder.build();



      And throughout the lifescycle of the app, I update the foreground notification with:



      private void updateForegroundNotification ()
      Log.i("BLE_Service", "Updating Foreground Notification!");
      Notification updatedNotification = createNotification();
      NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
      mNotificationManager.notify(ONGOING_NOTIFICATION_ID, updatedNotification);



      But whenever the foreground notification updates, I get the warning about stream types being deprecated and setSound() and all that. What's going on?







      java android notifications android-notifications






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 9 at 8:49









      Zoe

      13.3k85386




      13.3k85386










      asked Mar 9 at 3:30









      EricEric

      289




      289






















          0






          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%2f55073715%2fandroid-notification-use-of-stream-types-is-deprecated-for-operations-other-t%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073715%2fandroid-notification-use-of-stream-types-is-deprecated-for-operations-other-t%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

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived