With the release of Xcode 8, Apple introduced a new way of managing the signing configuration. Now you have two options Manual
and Automatic
.
According to the WWDC 2016 Session about Code signing (WWDC 2016 - 401 - What's new in Xcode app signing), when you select Automatic
signing, Xcode is going to:
- Create signing certificates
- Create and update App IDs
- Create and update provisioning profiles
But according to what Apple says in that session, the Automatic Signing
is going to use Development signing
and will be limited to Xcode-created provisioning profiles.
The issue comes when you try to use Automatic Signing
on a CI environment (like Travis CI or Jenkins). I'm not able to figure out an easy way to keep using Automatic and sign for Distribution (as Xcode forces you to use Development and Xcode-created provisioning profiles).
The new "Xcode-created provisioning profiles" do not show up in the developer portal, although I can find then in my machine... should I move those profiles to the CI machine, build for Development
and export for Distribution
? Is there a way to override the Automatic Signing
using xcodebuild
?
What fixed it for me was this: http://code-dojo.blogspot.jp/2012/09/fix-ios-code-signing-issue-when-using.html
... copying certificates from Login keychain to System keychain. You might also want to set all dev certificates to 'Allow all applications to access this item' (Right-click/Get Info/Access Control).
I noticed my Unity build was never adding a ProvisioningStyle key to my XCode project. I then found a way to manually add the ProvisioningStyle by using a "PostProcessBuild" build script. i.e. a unit of code that is called after the IOS XCode project has been built by Unity.
First I had a look at what the project.pbxproj file should look like - when it is set to Manual Provisioning:
Then I created my code to replicate the "structure" of the file seen above. (using the XCodeEditor project found here: XCodeEditor)
There is a tool called fastlane which makes using xcodebuild much easier and it is maintained meaning new updates will continue to provide support for changes to xcode. It makes it much easier to create scripts and config for building and codesigning your app among many other xcode automation tools it supports. I'd recommend giving it a look into.
If you are using Xcode 8.x and Jenkins for CI. Then probably you would face issue with "Signing for “YourProjectName" requires a development team. Select a development team in the project editor.
Code signing is required for product type 'Application' in SDK 'iOS 10.1’”.** BUILD FAILED ** when running the job.
What is the solution?.
Solution is:
set Provisioning profile to None in Xcode project build settings.
In jenkins, Create a execute shell before the Xcode setting and write the below command
Remember: keep that execute shell before Xcode settings in Build section of jenkins.
This works.
I'm considering another option I've not seen mentioned here yet. Setup two identical targets, that only differ in their signing settings.
Downside is that you would have to manage two identical targets. Upside is that get the benefits of automatic signing for development, and don't have to maintain potentially brittle scripts that modify your project just before build time.
After trying a few options, these are the solutions that I was able to use on my CI server:
Include the Developer certificate and private key as well as the auto generated provisioning profiles in the CI environment:
Using
Automatic signing
forces you to use aDeveloper
certificate andauto-generated provisioning profiles
. One option is to export your development certificate and private key (Application -> Utilities -> Keychain Access) and the auto-generated provisioning profiles to the CI machine. A way to locate the auto-generated provisioning profiles is to navigate to~/Library/MobileDevice/Provisioning\ Profiles/
, move all files to a backup folder, open Xcode and archive the project. Xcode will create auto-generated development provisioning profiles and will copy them to theProvisioning Profiles
folder.xcodebuild archive ...
will create a.xcarchive
signed forDevelopment
.xcodebuild -exportArchive ...
can then resign the build forDistribution
Replace 'Automatic' with 'Manual' when building on a CI environment
Before calling
xcodebuild
a workaround is to replace all instances ofProvisioningStyle = Automatic
withProvisioningStyle = Manual
in the project file.sed
can be used for a simple find an replace in thepbxproj
file:sed -i '' 's/ProvisioningStyle = Automatic;/ProvisioningStyle = Manual;/' <ProjectName>.xcodeproj/project.pbxproj
@thelvis also created a Ruby script to do this using the
xcodeproj
gem. The script gives you a better control over what is changed.xcodebuild
will then use the code signing identity (CODE_SIGN_IDENTITY
) set in the project, as well as the provisioning profiles (PROVISIONING_PROFILE_SPECIFIER
). Those settings can also be provided as parameters toxcodebuild
and they will override the code signing identity and/or provisioning profile set in the project.Switch to manual signing
Manual signing will provide total control over the code signing identities and provisioning profiles being used. It's probably the cleanest solution, but with the downside of losing all the benefits of Automatic signing.
To learn more about code signing with Xcode 8 I really recommend this article as well as the WWDC2016 session 401 - What's new in Xcode app signing