Xcode 不接受配置文件
我已经使用 Siri、应用程序组等创建了一个配置文件,并将其导入到 Xcode 中。 现在 Xcode 说:
配置配置文件“”不支持“”应用程序组。
我的项目是一个分叉 (https://github.com/vector-im/element-ios< /a>),它还包含一个文件配置文件:
// App identity
BUNDLE_DISPLAY_NAME = Element
BASE_BUNDLE_IDENTIFIER = im.vector.app
APPLICATION_GROUP_IDENTIFIER = group.im.vector
APPLICATION_SCHEME = element
// Team
DEVELOPMENT_TEAM = 7J4U792NQT
// Provisioning profiles
RIOT_PROVISIONING_PROFILE_SPECIFIER = Vector App Store
RIOT_PROVISIONING_PROFILE = 4b43c1ca-3246-4984-828f-165838f5715a
NSE_PROVISIONING_PROFILE_SPECIFIER = "Vector NSE: App Store"
NSE_PROVISIONING_PROFILE = de44ca91-4318-4c23-8611-b531793505c2
SHARE_EXTENSION_PROVISIONING_PROFILE_SPECIFIER = "Vector Share Extension: App Store"
SHARE_EXTENSION_PROVISIONING_PROFILE = 546090a2-77ca-4bc2-b904-da5bd97a2f37
SIRI_INTENTS_PROVISIONING_PROFILE_SPECIFIER = "Vector Siri Intents: App Store"
SIRI_INTENTS_PROVISIONING_PROFILE = 6951ad31-4850-445a-89c8-b64bca0a1c44
有人可以帮我吗?我无法弄清楚配置文件的说明符是什么以及为什么 Xcode 无法正确检测到配置文件。
谢谢!
I have created a provisioning profile with e.g. Siri, app groups and imported it into Xcode.
Now Xcode says that:
provisioning profile "" doesn't support the "" App Group.
My project is a fork (https://github.com/vector-im/element-ios) and it also contains a file config file:
// App identity
BUNDLE_DISPLAY_NAME = Element
BASE_BUNDLE_IDENTIFIER = im.vector.app
APPLICATION_GROUP_IDENTIFIER = group.im.vector
APPLICATION_SCHEME = element
// Team
DEVELOPMENT_TEAM = 7J4U792NQT
// Provisioning profiles
RIOT_PROVISIONING_PROFILE_SPECIFIER = Vector App Store
RIOT_PROVISIONING_PROFILE = 4b43c1ca-3246-4984-828f-165838f5715a
NSE_PROVISIONING_PROFILE_SPECIFIER = "Vector NSE: App Store"
NSE_PROVISIONING_PROFILE = de44ca91-4318-4c23-8611-b531793505c2
SHARE_EXTENSION_PROVISIONING_PROFILE_SPECIFIER = "Vector Share Extension: App Store"
SHARE_EXTENSION_PROVISIONING_PROFILE = 546090a2-77ca-4bc2-b904-da5bd97a2f37
SIRI_INTENTS_PROVISIONING_PROFILE_SPECIFIER = "Vector Siri Intents: App Store"
SIRI_INTENTS_PROVISIONING_PROFILE = 6951ad31-4850-445a-89c8-b64bca0a1c44
Can someone please help me with that? I can not figure out what the specifier of the provisioning profile is and why Xcode does not detect the provisioning profile right.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了完全相同的问题。通过按照本指南删除已在 xCode 下导入的配置文件来解决此问题: https://www.rampfesthudson.com/how-do-i-delete-all-provisioning-profiles-in-xcode/
然后在developer.apple.com中我添加了一个应用程序组(在标识符下),然后编辑我的应用程序ID以将应用程序组添加为新功能,最后重新创建一个新的配置文件,这很好!
希望有帮助。
I ran into the exact same problem. Solved it by folowing this guide to delete the Provisioning Profiles already imported under xCode : https://www.rampfesthudson.com/how-do-i-delete-all-provisioning-profiles-in-xcode/
Then in developer.apple.com I added an App Group (under Identifiers), then edited my App ID to add App Groups as a new Capability, and finally recreated a new Provisioning Profile, and it was good !
Hope it helps.