xcode - Localizable.Strings not picked up on iOS command line build -


we have command-line build script creates our ipa automatically every day , working until added localization.

for reason command-line build not picking localizable.strings. if project built through xcode, works correctly.

we passing clean flag through in build, , i've tried emptying derived data , running project > clean within xcode before running build, still doesn't work.

the thing can think of, looking @ other questions on here, have other common projects included workspace, , have localizable.strings files themselves, maybe causing conflict? if were, seems me manual xcode build have conflict.

is there step missing in command-line build can think of?

xcodebuild -workspace project_name.xcworkspace -sdk "iphoneos6.1" -scheme project_name code_sign_identity="$distribution_certificate" provisioning_profile="${provisonning_profile}" clean xcodebuild -workspace project_name.xcworkspace -sdk "iphoneos6.1" -scheme project_name code_sign_identity="$distribution_certificate" provisioning_profile="${provisonning_profile}" archive xcodebuild -workspace project_name.xcworkspace -sdk "iphoneos6.1" -scheme project_name code_sign_identity="$distribution_certificate" provisioning_profile="${provisonning_profile}" -configuration release  /usr/bin/xcrun -sdk iphoneos packageapplication -v "${project_builddir}/project_name.app" -o "${build_history_dir}/project_name.ipa" --sign "$distribution_certificate" --embed "${provisonning_profile}" 


Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

asp.net - Razor Page Hosted on IIS 6 Fails Every Morning -

c++ - wxwidget compiling on windows command prompt -