使用 Xcode 创建无线清单文件(.plist 扩展名)
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/11082846/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Create wireless manifest file (.plist Extension) using Xcode
提问by kb920
My client want to use "Installing apps wirelessly" feature.
我的客户想要使用“无线安装应用程序”功能。
Using this he can download application directly from my server no need to synchronize his device. I search on Internet and I got some information, for that I need two files
使用它,他可以直接从我的服务器下载应用程序,无需同步他的设备。我在互联网上搜索并获得了一些信息,为此我需要两个文件
- The app (.ipa) file
- The manifest (.plist) file.
- 应用程序 (.ipa) 文件
- 清单 (.plist) 文件。
I know how to create (.ipa) file but i have no idea about (.plist) file. If any one having idea how to create (.plist) file please share your idea.
我知道如何创建 (.ipa) 文件,但我不知道 (.plist) 文件。如果有人知道如何创建 (.plist) 文件,请分享您的想法。
回答by Nicolas Miari
If you export your AdHoc archive and check the 'Enterprise distribution' box, the .plist is exported to the same directory with the same name as the ipa. I did this today for the first time, hosted it on my server and it worked.
如果您导出 AdHoc 存档并选中“企业分发”框,则 .plist 将导出到与 ipa 同名的同一目录中。我今天第一次这样做,将它托管在我的服务器上并且它工作正常。
Check this: http://www.paradeofrain.com/2010/11/taking-the-pain-out-of-ad-hoc-testing/
检查这个:http: //www.paradeofrain.com/2010/11/taking-the-pain-out-of-ad-hoc-testing/