We've implemented AutoFill Credential Provider within our macOS App now that it's available in Big Sur as mentioned in AutoFill Everywhere from WWDC20. We've followed the instructions in the documentation for ASCredentialProviderViewController which mentions adding the AutoFill Credential Provider Entitlement to both the extension and the containing app as the first step.
Invalid Code Signing Entitlements. Your application's bundle signature contains code signing entitlements which are not supported on macOS. Specifically, key 'com.apple.developer.authentication-services.autofill-credential-provider' in [App] is not supported.
One thing which may be related is that the documentation for ASCredentialProviderViewController references availability for macOS 11.0+, but the AutoFill Credential Provider entitlement doesn't reference any such availability.
With Big Sur being released, how do we submit/release our App with AutoFill Credential Provider support?
Once we attempt to validate our App for the Mac App Store, we receive a validation error:Add the AutoFill Credential Provider Entitlement to both the extension and its containing app.
Invalid Code Signing Entitlements. Your application's bundle signature contains code signing entitlements which are not supported on macOS. Specifically, key 'com.apple.developer.authentication-services.autofill-credential-provider' in [App] is not supported.
One thing which may be related is that the documentation for ASCredentialProviderViewController references availability for macOS 11.0+, but the AutoFill Credential Provider entitlement doesn't reference any such availability.
With Big Sur being released, how do we submit/release our App with AutoFill Credential Provider support?