flutterLocalNotificationsPlugin通知图标在android studio中Flutter看不到

问题描述 投票:0回答:1

我的可绘制文件夹中有一个带有白色绘图 96x96 px 的图标(称为“test.png”),我使用

AndroidInitializationSettings('test')
设置该图标。但是,当运行应用程序并触发通知时,图标只是灰色背景,我在控制台中收到以下消息:

PlatformException(invalid_icon, The resource test could not be found. Please make sure it has been added as a drawable resource to your Android head project., null, null)

我做错了什么? 该文件存在,位于正确的文件夹中,并且为白色、透明背景和 96 像素。我还必须跳过哪些其他障碍? :'(

flutter notifications icons
1个回答
0
投票

尝试将图像名称更改为app_icon,并将其设置在文件夹drawable和文件夹drawable-21中,并在flutter本地通知中调用不带图像扩展名的图标名称

© www.soinside.com 2019 - 2024. All rights reserved.