"No installed provisioning profiles match the installed iOS signing identities." 当 运行 在模拟器上
"No installed provisioning profiles match the installed iOS signing identities." when running on simulator
阿洛
我正在尝试在 Xamarin 中使用 iOS 钥匙串,但出现错误 34018。经过一些谷歌搜索后,我添加了 Entitlements.plist 并将其添加到 iOS Bundle 中的自定义权利登录项目属性,但现在出现 "No installed provisioning profiles match the installed iOS signing identities." 错误。我正在尝试 运行 模拟器中的应用程序,我认为在模拟器中 运行ning 不需要配置文件。为什么添加 Entitlements.plist 会导致此错误,我该如何解决?
谢谢!
使用任何类型的 iOS 功能(iOS 应用程序服务)需要 iOS 配置文件并且完全 独立 如果您的目标是物理 iDevice 或 iOS 模拟器。
To use capabilities, the app must have a valid provisioning profile that contains an App ID with the correct service enabled
因此,要使用 Keychain
一项 iOS 应用程序服务,您必须拥有有效的配置文件。可以使用免费的配置文件,但您必须通过 Xcode 注册您应用的 Bundle Identifier
并连接物理设备,这样您就可以依次在 Entitlements.plist
中分配适当的值并构建使用该配置文件的 Xamarin 应用程序。然后,您可以在物理设备或模拟器上调试该应用程序。
阿洛
我正在尝试在 Xamarin 中使用 iOS 钥匙串,但出现错误 34018。经过一些谷歌搜索后,我添加了 Entitlements.plist 并将其添加到 iOS Bundle 中的自定义权利登录项目属性,但现在出现 "No installed provisioning profiles match the installed iOS signing identities." 错误。我正在尝试 运行 模拟器中的应用程序,我认为在模拟器中 运行ning 不需要配置文件。为什么添加 Entitlements.plist 会导致此错误,我该如何解决?
谢谢!
使用任何类型的 iOS 功能(iOS 应用程序服务)需要 iOS 配置文件并且完全 独立 如果您的目标是物理 iDevice 或 iOS 模拟器。
To use capabilities, the app must have a valid provisioning profile that contains an App ID with the correct service enabled
因此,要使用 Keychain
一项 iOS 应用程序服务,您必须拥有有效的配置文件。可以使用免费的配置文件,但您必须通过 Xcode 注册您应用的 Bundle Identifier
并连接物理设备,这样您就可以依次在 Entitlements.plist
中分配适当的值并构建使用该配置文件的 Xamarin 应用程序。然后,您可以在物理设备或模拟器上调试该应用程序。