I have a test app at React Native Expo where I'm using i18n for multilingualism, but I'm having a problem. I want to use FCM push notifications with localization, but i18n doesn't compile Localizable.strings and string.xml to implement localized notifications.
So I faced a problem: how can I implement multilingual notifications via FCM?
I had an option to send localized keys via data, but this option will not work when the application is closed. So I need some solution that will create Localizable.strings and string.xml files during compilation, but I couldn't find any good solution. Maybe someone has faced this problem and can tell me something.
P.s.: I'm just starting to learn React Native






