HXPackRobot icon indicating copy to clipboard operation
HXPackRobot copied to clipboard

打包时出现的问题

Open YanPengImp opened this issue 6 years ago • 1 comments

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

YanPengImp avatar May 30 '18 06:05 YanPengImp

在网上看了一下,类似解决方法是在 podfile 后面加上以下代码:

post_install do |installer|
    installer.pods_project.build_configurations.each do |config|
        config.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = ''
    end
end

不好用的话,在本 issues 回复就好.

moonclock avatar May 30 '18 09:05 moonclock