以无线方式安装企业内部应用
苹果文档:
https://help.apple.com/deployment/ios/#/apda0e3426d7
问题:
1.7p手机下载app 时不显示下载进度图片
初步猜测时iOS版本问题,还待解决
2.打包app上传阿里云对象存储iPhone5(iOS8.1.3)不能下载
猜测是证书问题,两种可能
(1)猜测1,新建了cer证书,不能识别。
(3)猜测2,之前做了nfc测试添加了app ID的nfc功能, 去掉此功能还是不可下载,新建app ID重新生成证书描述文件,可以下载了。描述文件改为不自动(如果是自动打包时会选择最近创建的cer文件,最近创建的cer文件不是本电脑创建的 或者 你没有最近的cer文件的p12证书,会打包失败)
注意:管理ipa,图片,plist文件的服务器必须是https协议,ca认证过的,比如可以上传到:阿里云对象存储,七牛对象存储,腾讯云存储。
iOS8安装企业版无反应问题
百度查找的解决办法,原文:https://blog.csdn.net/yujianxiang666/article/details/44783219
题描述:iPhone5S IOS8.1.2原来的企业APP下载后无法安装,点击安装无反应
方法一:
还原网络设置
(注:我想既然有缓存问题引起的(原因看方法二),清除缓存就可以恢复。方法二有个不好的下载中会有2个APP,安装成功后正常。方法一不好的就是网络密码要重新输入了,测试了3个iPhone5s,IOS8.1.2设备,2个可以1个不成功)
方法二:(来着网络转)
iOS7可以下载没有任何问题,iOS8发现挂在官网上的企业版的app点击了提示是否安装应用程序,但是确认以后没有反应,找了很久,都没有发现问题。后来查看了的deviceconsole发现安装的时候出现
<code><span style="color:#ff00;"><span style="font-size: 16px;"><span>LoadExternalDownloadMani<wbr>festOperation</wbr></span><span>:</span><span> </span><span>Ignore</span><span> manifest download</span><span>,</span><span> already have bundleID</span><span>:</span><span> com</span><span>.</span><span>mycom</span><span>.</span><span>MyApp</span></span></span></code>
来查资料外国开发者推测是iOS8的一个bug:
The biggest issue for us is that we can notreproduce this onany of our devices. Our suspicion is that iOS 8has some internalcache with bundle IDs and just doesn't install abuild if it thinksthat an app with this bundle ID is alreadyinstalled. As theinstallation doesn't even start, we think that iOSis matching thebundle identifier from the manifest plist againstthis cache.
它会寻找是否ios缓存的identifier与bundleidentifier在plist文件中匹配,如果匹配,它会认为已经安装了,就不会有反应。上面解释的很清楚。所以解决办法就是在plist文件中修改bundle Identifier。
比如你的plist文件的BundleID是com.mycom.MyApp,则修改成com.mycom.MyApp.fixios8。(创建一个假的bundleID,可以随便取,这样ios就不会认为你已经安装。记住是修改plist文件的bundleID,不是应用程序的bundleID)
发布以后就发现可以了。只是如果你已经安装了app,则会出现一个新的下载的空白icon,因为这个app的bundleID与你plist的bundleID不一致,当下载完成后,会覆盖原本app,因为它会检测到下载安装的app的bundleID已经存在并且覆盖。
网友评论