2

New to flutter, is there a way to internationalize my app name. I see this is possible with other apps.

I was able to get strings within the app internationalized following the guide here: https://phrase.com/blog/posts/flutter-localization/

However, I think app name is stored in android/app/src/main/AndroidManifest.xml so that is not something I can change with the flutter internationalization packages.

Is this possible? Thanks.

O Dev
  • 63
  • 5

1 Answers1

1

Welcome to Flutter,

Yes you can localize (Internationalize) the Flutter App Name,

Moaz El-sawaf
  • 2,306
  • 1
  • 16
  • 33
  • 1
    Wow, thanks, that is exactly what I need. I was doing intertionalization within Flutter so my searches involved flutter (I googled "flutter internationalization app name") and didn't find anything. Now I realize this is purely an Android issue and had to be searched and solved along android lines. Thank you very much! – O Dev May 09 '22 at 08:06
  • Yes it is a Native Problem, You're welcome ❤ – Moaz El-sawaf May 09 '22 at 14:33