Xcode error “Profile doesn't include the beta-reports-active entitlement” for adhoc profile

问题:我使用product证书打包提交到AppStore,导出ipa包没有问题,然而,我使用adhoc证书,在同样环境下打包没有问题,但在最后导出ipa包的时候,出现Profile doesn't include the beta-reports-active entitlement
我们知道entitlement对应的是Xcode targets下的Capabilities,我们需要什么功能,就开启什么功能,所以制作描述文件的时候,也对应上,我核对了,没有问题呀!!

如果已经制作好描述文件的,可以查看https://www.cnblogs.com/abinzhang/p/5662061.html
下图也可以简单查看:

Xcode error “Profile doesn't include the beta-reports-active entitlement” for adhoc profile_第1张图片
查capabilities.png

其中的keychain sharing就算是关闭,默认也是有的,原因我也不知道,我创建了几个项目尝试过。

解决方法:

回归原来的问题,是什么导致了描述文件没有包含beta-reports-active权利,原来是我们Xcode scheme模式默认archive是release,而targets==>general里面provisioning Profile是分开的,如上图,release,ad hoc release都有不同的描述文件,所以只需要对应起来就可以通过了,两个地方,我修改的是Xcode scheme模式archive修改为Ad Hoc Release。导出ipa妥妥的。

你可能感兴趣的:(Xcode error “Profile doesn't include the beta-reports-active entitlement” for adhoc profile)