I'm using Titanium command line to build and ad hoc distribute app, the i18n/en/strings.xml (using UTF-8) in the app is not converted to en.lproj/Localizable.strings in Application.ipa file.
Command used for ad hoc distribution is: ti build -p ios -T dist-adhoc -R "Enterprise Distribution Profile" -P "Enterprise UUID" --force -O /Users/username
But if the Titanium build is run using following command, I was able to generate Application.app file and see the contents of en.lproj/Localizable.strings were converted to key-value pairs.
ti build -p ios -b true
I'm new to Titanium builds, Please help if I'm missing something in ad hoc distribution, as the application runs fine in simulator and device but not after installing the app using the ipa file created using the above ad hoc distribution command.