问题标签 [apple-configurator]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
520 浏览

ios - 我的 iOS 应用程序中的单应用程序模式

我想通过编码在我的 iOS 应用程序中实现单应用模式。为此,我正在执行以下步骤:

  1. 我正在通过苹果配置器并使用配置器本身生成的配置文件来监督我的设备。

  2. 我选择了限制有效负载来生成我的个人资料,因为我想要单一应用模式功能。

  3. 根据苹果文档,在限制有效负载中添加了一个键,即 iOS 及更高版本中的“autonomousSingleAppModePermittedAppIDs”。但我无法在任何地方找到它来填充我的包标识符。我试图通过在文本编辑中编辑配置文件来手动添加此密钥,但此过程使我的配置文件无效。

这是链接参考: https ://developer.apple.com/library/ios/featuredarticles/iPhoneConfigurationProfileRef/Introduction/Introduction.html#//apple_ref/doc/uid/TP40010206-CH1-SW13

在文档的限制有效负载部分下。

  1. 我也尝试在 iPCU(iPhone 配置实用程序)的帮助下生成我的个人资料,但没有找到任何东西。

所以请帮我解决我在这里缺少的东西或我需要做的其他事情。

谢谢哈里什

0 投票
0 回答
383 浏览

ios - 通过 Apple Configurator 安装应用程序

我发现我可以通过 Apple Configurator 将 IPA 安装到我的设备上,而不会消耗我的 Apple Developer 帐户的设备配额。它看起来很棒,那么这样做的缺点是什么?

我的计划是将单个应用程序部署到 50 个 iDevices。有没有更好的方法呢?

AFAIK,如果我通过带有 Provisioning Profile 的 Xcode 安装,配置文件将过期并且应用程序将变得不可用,并且设备本身将消耗我的 Apple 开发人员帐户中的设备配额。

笔记:

  • 该应用没有提交到应用商店的计划
  • 我的 Apple Developer Program 没有 50 个额外的设备配额
  • 我可以物理访问 50 台设备(可以通过 USB 电缆连接)
  • 不会考虑越狱方式
  • 不会考虑使用 iExplorer / iTools
0 投票
1 回答
262 浏览

osx-yosemite - 无法在我的 Mac 中打开 Apple Configurator

我已将配置器安装到我的 mac。当我尝试从 Applications Folder 打开 Configurator 时,它没有打开。我正在使用带有 iTunes 12.0 的 Mac 10.10.1。任何人都可以提出任何解决方案吗?

0 投票
1 回答
903 浏览

ios - Apple Configurator:“锁定到应用程序”,能够打开外部应用程序

因此,我使用 Apple 配置器将 iPad 仅锁定到我的应用程序。问题是我的应用程序打开了一些外部应用程序:如 FB 、游戏......

当“锁定到应用程序”功能被禁用时,可以使用以下命令打开任何外部应用程序: NSString *stringURL = @"example://"; NSURL *url = [NSURL URLWithString:stringURL]; [[UIApplication sharedApplication] openURL:url];

但是,不幸的是,启用“锁定到应用程序”功能时,我无法打开外部应用程序。

是否有任何解决方案可以在能够打开外部应用程序的同时继续使用“锁定到应用程序”(仅从我的应用程序,因为用户无法访问主屏幕)或者是否有任何解决方案可以在不使用“锁定到应用程序”的情况下工作但强制只使用我的应用程序。

0 投票
0 回答
434 浏览

ios - 针对 ad-hoc/设备 wifi 网络问题的 iOS 配置文件

我一直在研究这个问题很长一段时间没有取得任何进展。

我正在尝试使用 Apple 配置器工具创建一个 wifi 配置文件,以使 iOS 设备能够自动加入或记住我的自定义 ad-hoc 网络。

我很快意识到配置器上没有选项来创建引用自组织网络的配置文件。目前,我的网络出现在 iPhone 上“设备”标题下的 wifi 选项卡中,而不是“选择网络”标题下。

如果我选择加入我的 ad-hoc 网络,它可以毫无问题地连接并收到一个 IP 地址,我可以与网络交互并且一切都按计划进行。

当我启用 wifi 并且 iPhone 跟踪我周围的潜在 wifi 网络时,它会弹出对话框以选择一个不包括“设备”网络选项列表的选项。

配置器工具只有与接入点或热点对应的选项。它没有提到“设备”网络的任何内容。

对于我的商业应用程序,我必须创建一个配置文件,以使安装了我的应用程序的 iPhone 能够自动加入这个 ad-hoc 网络。

我意识到将配置文件传送到设备是另一个问题,但是在安装过程之后有几种方法可以做到这一点。

对此问题的任何帮助将不胜感激。

谢谢,

约翰·R。

0 投票
1 回答
2027 浏览

ios - 如何在 iPad 上限制 WiFi 更改

我为客户的零售店提供了这个解决方案——他们有 iPad Air 2、iOS 8.1.3、路由器和带大电视的工作站,iPad 绝对有必要只与我为这些路由器提供的 WiFi 保持连接。如果有人更改为另一个热点,则该解决方案将不起作用。所以我正在寻找一些可以防止这种情况发生的方法,无论是在设置中还是通过某些应用程序。此外,它可能适用于苹果配置器,但我找不到任何提到它的网站。

谢谢你的建议

0 投票
2 回答
176 浏览

publishing - iOS 添加 UDID 而不重新导出应用程序?

每当我收到测试设备的 UDID 时,我都会将它们添加到我们门户网站上的设备列表中,developer.apple.com然后将新设备添加到应用程序的配置文件中,然后使用新的配置文件重新导出已编译的应用程序。

这很有趣,但是当每隔一天发生这种情况时,它就变得微不足道了。我已经阅读过,testflight但我想确保没有更好的方法已经建立。最好的方法是什么?

0 投票
1 回答
54 浏览

ios - Is there a good tool to deploy and update an iOS app that is meant to be part of a larger product?

I am currently working on a project that uses an iPad as the interface for the the product we are making. There is an external accessory feeding the iPad sensor data and the iPad will need to be on the business that buys our product's wifi.

The concern I have is that this doesn't really seem to fit under Apple's enterprise solution since it will not be under our own employees. Does this rule out MDM?

Apple configurator seems to be a good way of deploying these iPads and has the added benefit of preprograming stuff like the wifi of the business we are selling the product to. However, it would be preferable if the iPad was remotely configurable.

Anyways if anybody has had any experience creating such a system/workflow I would love to hear your thoughts.

Cheers!

0 投票
3 回答
219 浏览

ios - 在没有 App Store 的情况下将 App 分发到多个 iPad

我为希望在多台 iPad 上运行该应用程序的客户构建了一个应用程序。是否可以在不通过 App Store 分发的情况下做到这一点?我可以使用 Mac App Store 中的 Apple Configurator 或通过 Xcode Server 分发吗?

0 投票
2 回答
1548 浏览

ios - XML Parsing in OS X Terminal for MobileConfig file

I am working on generating (actually editing) a mobileconfig file (aka iOS profile, XML) via bash script.

The script fetch data from a MS Database and has now to inject/replace this data in my mobileconfig file (XML).

The XML file has the following structure:

I would like to replace the WiFi Password but also ActiveSync "Password" fields between the < string> < /string> using any native (xmllint, sed) or non-native tool.

Can anyone please help ?