简体   繁体   English

如何在没有UUID的情况下分发ios应用

[英]How to distribute ios app without UUID

I am exporting file using AdHoc and generate a link after uploading ipa file on Diawi . 我使用AdHoc导出文件,并在Diawi上上传ipa文件后生成链接。

When i install my app On my iphone, it is not installing. 当我在iPhone上安装我的应用程序时,它没有安装。 i am getting error 我遇到错误

Unable to install, cancel or retry. 无法安装,取消或重试。

Any suggestions for the same 任何相同的建议

Thanks 谢谢

1: code signing the IPA is required 1:需要对IPA进行代码签名

for installing it you have 3 options to sign it 要安装它,您有3个选项可以对其进行签名

a. 一种。 adhoc with UUIDs (the device identifier has to be registered) 具有UUID的临时(必须注册设备标识符)

b. b。 'enterprise-inhouse' (requires no registration of UUIDs!) “企业内部”(不需要注册UUID!)

*c. *C。 developer certificates (only devs in your home team can install those apps) 开发人员证书(只有家庭团队中的开发人员才能安装这些应用程序)


--> if you can, buy b (check if the license is appropriate) ->如果可以的话,买b(检查许可证是否合适)

我已经遇到了这个问题,因为我已经通过AppStore发送了该应用程序,用户可以通过diawi.com首次通过testflightapp安装该应用程序

You are very likely only having a "Developer" license with Apple, the $99 a year plan. 您很可能只与Apple拥有“开发者”许可,即每年99美元的计划。 In order for you to install ipa files onto a device, you have to register the device's UUID in your Apple Account. 为了将ipa文件安装到设备上,必须在Apple帐户中注册设备的UUID。 You can view your device UUID by connecting the device to iTune. 您可以通过将设备连接到iTune来查看设备UUID。

Enterprise license, the $299 plan does not require knowledge of device UUID. 企业许可证,299美元的计划不需要设备UUID的知识。

More information is available at Can I distribute my App for any device without UDID? 有关更多信息,请访问:是否可以为没有UDID的任何设备分发我的App?

When you export AdHoc build, you need to make sure that code signing identities have the device UDID on which you are trying to install. 导出AdHoc内部版本时,需要确保代码签名标识具有要尝试在其上安装的设备UDID。 If you want to install .ipa without UDID, set code signing to none. 如果要安装不带UDID的.ipa,请将代码签名设置为none。 But I am not sure exporting this way would allow you to install. 但是我不确定以这种方式导出是否可以安装。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM