hw-1

Code Signing Error: XXX does not support provisioning profiles. XXX does not support provisioning profiles, but provisioning profile NO_SIGNING/ has been manually specified. Set the provisioning profile value to “Automatic” in the build settings editor.

Code Signing Error: XXX does not support provisioning profiles. XXX does not support provisioning profiles, but provisioning profile NO_SIGNING/ has been manually specified. Set the provisioning profile value to “Automatic” in the build settings editor.

add this code bottom of Podfile to solve this issuse

1
2
3
4
5
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = ''
end
end