Android Local Notification in the standalone app keeps the expo icon in the title

  1. SDK Version:37.0.8
  2. Platforms: Android

Hi, I’m using the local notification for a scheduled notification and it works very well. But the expo icon still appears in the title after compiling the apk, no matter what icon you set in LocalNotification.android. Can this be fixed?

captura_4

Notifications.scheduleLocalNotificationAsync(
{
title,
body,
categoryId,
android: {
sticky: false,
icon: ‘…/assets/images/icon.png’,
color:‘#00c14e’,
channelId: ‘mychannel’
}
},
{
time,
repeat: ‘day’
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.