I am building an IOS app for another company.I was using xcode 7 and was able to use xcodebuild to build an unsigned archive which I was able to give to the customer who would then use it to generate their app signed with their own id.It seems that with xcode 9 I now need to sign the archive. I think I could still do this with wild card developer id but the problem is that the app has group entitlements which are not allowed in wildcard ids.I do not want to have to have customers provide me with their codesigning certificates and provisioning files.This is the command line I use to use as part of a script run by Jenkins:xcodebuild archive -project <my_project> -scheme <my_sheme> -configuration Release -archivePath <my_archive_path> OTHER_CODE_SIGN_FLAGS='--keychain /Users/me/Library/Keychains/Buildsystem' CODE_SIGN_ENTITLEMENTS=/Users/me/entitlements.plist CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO HEADERMAP_INCLUDES_PROJECT_HEADERS=NO USE_HEADERMAP=NOThe provisioning file I was u
3
0
21k