HXPackRobot
HXPackRobot copied to clipboard
打包时出现的问题
Code Signing Error: AFNetworking does not support provisioning profiles. AFNetworking 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.
我是自己配置了一个InHouse的configuration
在网上看了一下,类似解决方法是在 podfile 后面加上以下代码:
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = ''
end
end
不好用的话,在本 issues 回复就好.