I have a issue with getting app display name to include the appending suffix when adding localisation to InfoStrings.plist
.
I have add different scheme
and User-Defined
attribute. So in my info.plist, i have App Name $(BUNDLE_DISPLAY_NAME_SUFFIX)
in my CFBundleDisplayName
. It will append a -S
to my app name when running on development scheme and normal app name on release scheme that i created. Everything is working well.
However, when I try to translate the app name, it does not work anymore. So in my infoPlist.strings
, I tried the following:
"CFBundleDisplayName" = "App Name ";
"CFBundleDisplayName" = "App Name $(BUNDLE_DISPLAY_NAME_SUFFIX)";
Both does not append the -S
anymore when I run on development scheme. Does anyone know how I could still do that? Like maybe how to get the $(Bundle_DISPLAY_NAME_SUFFIX)
to be read in the infoPlist.strings
.
More specifically, how do I include a preprocessor in InfoPlist.strings
?