Loading src/java/com/android/internal/telephony/InboundSmsHandler.java +1 −1 Original line number Diff line number Diff line Loading @@ -919,7 +919,7 @@ public abstract class InboundSmsHandler extends StateMachine { .setContentTitle(mContext.getString(R.string.new_sms_notification_title)) .setContentText(mContext.getString(R.string.new_sms_notification_content)) .setContentIntent(intent) .setChannel(TelephonyNotificationBuilder.CHANNEL_ID_SMS); .setChannelId(TelephonyNotificationBuilder.CHANNEL_ID_SMS); NotificationManager mNotificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE); mNotificationManager.notify( Loading src/java/com/android/internal/telephony/imsphone/ImsPhone.java +1 −1 Original line number Diff line number Diff line Loading @@ -1561,7 +1561,7 @@ public class ImsPhone extends ImsPhoneBase { .setContentIntent(resultPendingIntent) .setStyle(new Notification.BigTextStyle() .bigText(messageNotification)) .setChannel(TelephonyNotificationBuilder.CHANNEL_ID_WFC) .setChannelId(TelephonyNotificationBuilder.CHANNEL_ID_WFC) .build(); final String notificationTag = "wifi_calling"; final int notificationId = 1; Loading src/java/com/android/internal/telephony/util/TelephonyNotificationBuilder.java +1 −1 Original line number Diff line number Diff line Loading @@ -125,7 +125,7 @@ public class TelephonyNotificationBuilder extends Notification.Builder { NotificationChannel channel = getNotificationManager(mContext) .getNotificationChannel(channelId); if (channel == null) channel = createChannel(mContext, channelId); return super.setChannel(channel.getId()); return super.setChannelId(channel.getId()); } public TelephonyNotificationBuilder(Context context) { Loading Loading
src/java/com/android/internal/telephony/InboundSmsHandler.java +1 −1 Original line number Diff line number Diff line Loading @@ -919,7 +919,7 @@ public abstract class InboundSmsHandler extends StateMachine { .setContentTitle(mContext.getString(R.string.new_sms_notification_title)) .setContentText(mContext.getString(R.string.new_sms_notification_content)) .setContentIntent(intent) .setChannel(TelephonyNotificationBuilder.CHANNEL_ID_SMS); .setChannelId(TelephonyNotificationBuilder.CHANNEL_ID_SMS); NotificationManager mNotificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE); mNotificationManager.notify( Loading
src/java/com/android/internal/telephony/imsphone/ImsPhone.java +1 −1 Original line number Diff line number Diff line Loading @@ -1561,7 +1561,7 @@ public class ImsPhone extends ImsPhoneBase { .setContentIntent(resultPendingIntent) .setStyle(new Notification.BigTextStyle() .bigText(messageNotification)) .setChannel(TelephonyNotificationBuilder.CHANNEL_ID_WFC) .setChannelId(TelephonyNotificationBuilder.CHANNEL_ID_WFC) .build(); final String notificationTag = "wifi_calling"; final int notificationId = 1; Loading
src/java/com/android/internal/telephony/util/TelephonyNotificationBuilder.java +1 −1 Original line number Diff line number Diff line Loading @@ -125,7 +125,7 @@ public class TelephonyNotificationBuilder extends Notification.Builder { NotificationChannel channel = getNotificationManager(mContext) .getNotificationChannel(channelId); if (channel == null) channel = createChannel(mContext, channelId); return super.setChannel(channel.getId()); return super.setChannelId(channel.getId()); } public TelephonyNotificationBuilder(Context context) { Loading