@Claude31 @Frameworks EngineerThanks for putting those ideas out there :D
When we took over the app it had English and German, so I wanted to add dutch and make it the primary language since the app is only available in Dutch and English. I've checked the other languages and made sure that we have media for all of them on the highest resolution display
This was something I was not aware of, we use Expo, so what I did was add some lines to the app.config that would then later generate the nl.lproj file. I will try this new bundle later, and I will follow-up on this with you.
{
locales: {
en: './locales/en.json',
nl: './locales/nl.json'
},
build: {
....
infoPlist: {
CFBundleLocalizations: ['en', 'nl'],
CFBundleAllowMixedLocalizations: true
}
}
I've tried to do it from the other languages and nothing helped there.