Scenario:(Using iOS 5 SDK) I have IPA file created using developer certificate with bundle ID com.mydeveloper.myapp on my machine.
To upload on app store i need to sign with Distribution certificate on another machine with same bundle ID as com.mydeveloper.myapp
Here is the script I am using for resigning for distribution
cp myprovision.mobileprovision myapp.app/myprovision.mobileprovision
export EMBEDDED_PROFILE_NAME=embedded.mobileprovision
export CODESIGN_ALLOCATE=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate
codesign -f -vv -s "iPhone Distribution: My Company" -i "myprovision.mobileprovision" "myapp.app"
is it correct or am i missing any steps ?
As it gives error while submitting app "Unable to extract entitlements from application" even though I don't have any entitlements file in my project.
any reason why I am getting this error ?