How To Signing Apk With UTF-8 alias name (سلام علکیم)

I’m trying to deploy an android apk created by Ionic v3 but I’m wrong.
Here is my process :
1)Build the release apk : ionic cordova build --release android

2)keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
I create password named MyPass1, and write all information in the form (name, country,…)

3)Signed the Apps :jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore platforms\android\app\build\outputs\apk\release\app-release-unsigned.apk alias_name

4)Zip the Apk : zipalign -v 4 platforms\android\app\build\outputs\apk\release\app-release-unsigned.apk alias_name

5)And then i copy the Apk on a android device.

Given that I have defined the program name (سلام علکیم) in config.xml => <widget => <name
But when I try to install the Apps, the name of app is alias_name .
Where have I made a mistake?

Thanks in advance