Fastlane and xcode8 tools, should I use it?

I use fastlane tools to handle all my signature needs in Xcode 7. When I started using Xcode 8, I had some problems. Xcode 8 introduces a new “automatic” signature approach. I can still use the fastlane tools, telling Xcode not to use automatic signing and choosing the correct values ​​that appear in the signature options when disabling automatic installation.

I would like to start using the auto-subscribe option, but I'm not 100% sure how to do it correctly using fastlane. I believe I need to understand how to use the PROVISIONING_PROFILE_SPECIFIER parameter?

Can anyone explain how fastlane should work with Xcode 8 auto-signing?

+4
source share
1 answer

If you want to use fastlane to sign code, you must turn off automatic code signing and let fastlane do its job. However, you can also enable automatic code signing and let Xcode manage profiles for you.

You can find more information on how to use fastlane with Xcode 8 and the new automatic code signing in XcodeProject fastlane docs

+5
source

Source: https://habr.com/ru/post/1654303/


All Articles