I am building an app using Create-React-Native-App. As such, my testing and development is in Expo. I am looking for a solution to help with i18n, mostly translations and RTL. I found that ex-react-native-i18n works great, until I try ejecting to create the App, because it needs expo. (Which I don't need or want in the production App)
with react-native-i18n
I get this error:
react-native-i18n module is not correctly linked
I tried react-native link
and yarn link
without success. The ReadMe page for react-native-i18n
has extensive instructions for manual linking, but only for AFTER ejecting.
What am I missing here? Is there a better solution that I'm missing?
Thanks.