Reputation: 141
Azure iOS build pipeline is not picking Entitlements files and due to that Apply Pay configuration is missing app is failing to provide Apple pay method. can anyone help is there any option there to set picking the entitlements in Azure Pipeline?
Upvotes: 2
Views: 674
Reputation: 1236
I had a very similar problem with other entitlements. What eventually got it for me was making sure the Xcode build task had manual signing selected. As long as you've installed your certificate and provisioning profile, you can set the following on the Xcode build Signing & provisioning section:
Signing Style: Manual signing
Signing Identity: $(APPLE_CERTIFICATE_SIGNING_IDENTITY)
Provisioning profile UUID: $(APPLE_PROV_PROFILE_UUID)
Upvotes: 2