I have an app with two targets. Some localizations supported in one target is not supported in the other. Since in Xcode the localizations are specified on the project level and not on the target level, I need to know how to remove certain languages from each target.
I have tried adding build phase script
rm -r "${TARGET_BUILD_DIR}/${PRODUCT_NAME}.app/fr.lproj"
but there is no effect. I still see the french localizations when the device is set to french (French should not be supported in this target), I want it to fall back to English localization. Is it possible?
Help would be appreciated.