hey i m trying to submit my app to the itunes connect and i have push notification in it
but each time i try to archive my app with adhoc or distribution prov profile i got build failed
the only way to fix this is by removing precompile shel script but with this case the app appear without any resources
this is the shel script
export TITANIUM_PREFIX="_Prefix-*" echo "Xcode Pre-Compile Phase: Removing $SHARED_PRECOMPS_DIR/$PROJECT$TITANIUM_PREFIX" find "$SHARED_PRECOMPS_DIR" -name "$PROJECT$TITANIUM_PREFIX" -print0 | xargs -0 rm -rf if [ "x$TITANIUM_CLI_XCODEBUILD" == "x" ]; then /usr/local/bin/node "/Users/tonyhaddad/.appcelerator/install/4.0.0/package/node_modules/appc-cli-titanium/node_modules/titanium/bin/titanium" build --platform iphone --sdk "4.0.0.RC2" --no-prompt --no-progress-bars --no-banner --no-colors --build-only --xcode exit $? else echo "skipping pre-compile phase" fi
and the log is
/bin/sh -c /Users/tonyhaddad/Library/Developer/Xcode/DerivedData/FindRE-fzyytqdewtdlfgegdwlwhxgphxxv/Build/Intermediates/ArchiveIntermediates/FindRE/IntermediateBuildFilesPath/FindRE.build/Release-iphoneos/FindRE.build/Script-241EAF36118E30260081A5BE.sh Xcode Pre-Compile Phase: Removing /Users/tonyhaddad/Library/Developer/Xcode/DerivedData/FindRE-fzyytqdewtdlfgegdwlwhxgphxxv/Build/Intermediates/ArchiveIntermediates/FindRE/PrecompiledHeaders/FindRE_Prefix-* [ERROR] : Invalid "--developer-name" value "iPhone Distribution: ******** (C4P73L6638)" [ERROR] : Invalid "--pp-uuid" value "8c239425-05fa-4bc8-abce-a156f05eb73c" For help, run: titanium help build Command /bin/sh failed with exit code 1thanks in advance