jeromexiong / audio_manager

A flutter plugin for music playback, including notification handling.
MIT License
99 stars 54 forks source link

App notification category is displayed in Chinease #53

Closed poonkuzhalik closed 3 years ago

poonkuzhalik commented 3 years ago

Hi,

Go to Settings -> Apps & Notifications --> Select your app using audio_manager --> Select Notifications.

You will see the notification category listed in Chinese.

Can this be changed to english.

Poongs

NotificationName
poonkuzhalik commented 3 years ago

Hi,

I just did a high level surfacing into the code. Looks like, while registering the notification channel, we have given this description/title.

MediaPlayerService.Java - line no: 216 notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "后台录轨迹的通知", NotificationManager.IMPORTANCE_LOW);

I'm new to open source contribution. If you can give a procedure to build the project, I will help you with all possible means to my capacity.

Poongs