我正在尝试安装mobileconfig文件,以便从我的应用程序以编程方式启用指导访问模式。 我通过手动添加密钥“autonomousSingleAppModePermittedAppIDs”使用Apple配置器2创建了配置文件。
<key>autonomousSingleAppModePermittedAppIDs</key>
<array>
<string>com.apple.ist.GuidedAccessTest</string>
</array>
但是当我尝试安装此配置文件时,我收到错误消息“配置文件无法安装[MCInstallationErrorDomain - 0xFA1(4001)]”。
将“autonomousSingleAppModePermittedAppIDs”替换为任何其他键,例如“blacklistedAppBundleIDs”或“whitelistedAppBundleIDs”,它们也是限制有效负载中的字符串数组,工作得很好,我可以安装配置文件。
关于我在这里缺少什么的指示?非常感谢,如果有人可以指向我的示例mobileconfig文件以启用引导访问。