phonegap/phonegap-plugin-push

Push Channel with Unicode caracter

digocesar opened this issue · 0 comments

Expected Behaviour

Use accentuation in notification channel description.

Actual Behaviour

When creating channel with description with accents it does not show the correct text in Android notification settings.

Steps to Reproduce

Create a channel with accents.
See at Android setting the App notification channel names.

Platform and Version (eg. Android 5.0 or iOS 9.2.1)

Android 8

(Android) What device vendor (e.g. Samsung, HTC, Sony...)

Moto G6

Cordova CLI version and cordova platform version

cordova 9.0.0
cordova platform version android  8.1.0

Plugin version

phonegap-plugin-push 2.3.0 "PushPlugin"

Sample Code that illustrates the problem

PushNotification.createChannel(
            () => {
                console.log('done')
            },
            () => {
                console.log('error')
            },
            {
                id: 'MyChannel',
                description: 'Notificações',
                importance: 3,
                visibility: 1,
                vibration: true
            }
        );