uniapp打包如何取消支持ipad,最开始勾选了ipad,打包也审核过了,后期审核提示在ipad上页面布局不兼容,就想取消掉ipad

*** Error: [ContentDelivery.Uploader.] Asset validation failed (90101) This bundle does not support one or more of the devices supported by the previous app version. Your app update must continue to support all devices previously supported. You declare supported devices in Xcode with the Targeted Device Family build setting. Refer to QA1623 for additional information: https://developer.apple.com/library/ios/#qa/qa1623/_index.html (ID: ) 2024-11-19 10:44:58.072 [ContentDelivery.Uploader.] ============= UPLOAD FAILED with 1 error. ============= 2024-11-19 10:44:58.076 *** Error: Error uploading '/Documents/downZipPath/0ae2535da0164b6eb52134a0770441cb/0ae2535da0164b6eb52134a0770441cb.ipa'. 2024-11-19 10:44:58.076 *** Error: Asset validation failed This bundle does not support one or more of the devices supported by the previous app version. Your app update must continue to support all devices previously supported. You declare supported devices in Xcode with the Targeted Device Family build setting. Refer to QA1623 for additional information: https://developer.apple.com/library/ios/#qa/qa1623/_index.html (ID: ) (90101) { NSLocalizedDeion = "Asset validation failed"; NSLocalizedFailureReason = "This bundle does not support one or more of the devices supported by the previous app version. Your app update must continue to support all devices previously supported. You declare supported devices in Xcode with the Targeted Device Family build setting. Refer to QA1623 for additional information: https://developer.apple.com/library/ios/#qa/qa1623/_index.html (ID: )"; NSUnderlyingError = "Error Domain=IrisAPI Code=-19241 \"Asset validation failed\" UserInfo={status=409, detail=This bundle does not support one or more of the devices supported by the previous app version. Your app update must continue to support all devices previously supported. You declare supported devices in Xcode with the Targeted Device Family build setting. Refer to QA1623 for additional information: https://developer.apple.com/library/ios/#qa/qa1623/_index.html, id=, code=STATE_ERROR.VALIDATION_ERROR.90101, title=Asset validation failed, NSLocalizedFailureReason=This bundle does not support one or more of the devices supported by the previous app version. Your app update must continue to support all devices previously supported. You declare supported devices in Xcode with the Targeted Device Family build setting. Refer to QA1623 for additional information: https://developer.apple.com/library/ios/#qa/qa1623/_index.html, NSLocalizedDeion=Asset validation failed}"; "iris-code" = "STATE_ERROR.VALIDATION_ERROR.90101"; }

***错误:[CntentDelivery.Uplooader.]资产验证失败(90101)此捆绑包不支持以前应用程序版本支持的一个或多个设备。您的应用程序更新必须继续支持以前支持的所有设备。您可以使用Targeted Device Family构建设置在Xcode中声明支持的设备。更多信息请参考QA1623:https://developer.apple.com/library/ios/#qa/qa1623/_index.html(ID:)2024-11-19 10:44:58.072[内容交付。上传者。2024-11-19 10:44:58.076***错误:上传“/文档/downZipPath/0ae2535da0164b6eb52134a0770441cb/0ae2535da 0164b6eb52134a0770441cb.ipa”时出错。2024-11-19 10:44:58.076***错误:资产验证失败此捆绑包不支持以前应用程序版本支持的一个或多个设备。您的应用程序更新必须继续支持以前支持的所有设备。您可以使用Targeted Device Family构建设置在Xcode中声明支持的设备。更多信息请参考QA1623:https://developer.apple.com/library/ios/#qa/qa1623/_index.html(ID:)(90101){NSLocalizedDeion=“资产验证失败”;NSLocalizedFailureReason=“此捆绑包不支持以前应用程序版本支持的一个或多个设备。您的应用程序更新必须继续支持以前支持的所有设备。您可以在Xcode中使用目标设备系列构建设置声明支持的设备。有关其他信息,请参阅QA1623:https://developer.apple.com/library/ios/#qa/qa1623/_index.html(ID:)“;NSUnderlyingError=”错误域=IrisAPI代码=-19241\“资产验证失败\”UserInfo={状态=409,详细信息=此捆绑包不支持以前应用程序版本支持的一个或多个设备。您的应用程序更新必须继续支持以前支持的所有设备。您可以在Xcode中使用目标设备系列构建设置声明支持的设备。有关其他信息,请参阅QA1623:https://developer.apple.com/library/ios/#qa/qa1623/_index.html,id=,代码=状态错误。VALIDAION_ERROR.90101,title=资产验证失败,NSLocalizedFailureReason=此捆绑包不支持以前应用程序版本支持的一个或多个设备。您的应用程序更新必须继续支持以前支持的所有设备。您可以使用Targeted Device Family构建设置在Xcode中声明支持的设备。更多信息请参考QA1623:https://developer.apple.com/library/ios/#qa/qa1623/_index.html,NSLocalizedDeion=资产验证失败}“;”虹膜代码“=”STATE_ERROR。VALIDATION_ERROR.90101“;}

### 使用 UniApp 开发和调试 iPad 应用程序 #### 创建项目并配置环境 为了针对iPad设备进行开发,需确保择了正确的模板和支持的平台。当创建一个新的UniApp项目时,应指定此项目旨在支持iOS平台[^2]。 #### 设置 App ID 和证书 对于iOS应用,在准备阶段需要在Apple Developer中心注册一个特定于应用程序的App ID,并生成相应的推送通知SSL证书等必要资源。这一步骤至关重要,因为后续会涉及到将该ID用于项目的配置文件中以匹配目标设备的要求[^1]。 #### 调试技巧 - **模拟器测试** 可通过Xcode内置的iOS Simulator来进行初步的功能验证。启动Simulator后可以择不同尺寸和平板模式下的虚拟机来预览应用界面布局是否适应大屏幕特性。 - **真机联调** 对于更真实的用户体验评估,则建议连接实际物理iPad至电脑并通过USB线缆完成安装部署过程。这样不仅可以检验网络请求、传感器读取等功能点的表现情况,还能更好地捕捉潜在Bug所在位置以便及时修复。 - **远程日志查看** 利用`console.log()`函数输出调试信息到控制台;另外还可以借助第三方服务如友盟+提供的移动统计分析工具集成SDK收集崩溃报告与自定义事件数据辅助定位问题根源。 ```javascript // 打印错误堆栈跟踪便于排查异常原因 try { someDangerousOperation(); } catch (e) { console.error(e.stack); } ``` - **响应式设计调整** 鉴于平板类产品的分辨率普遍较高且纵横比例各异,因此应当重视页面元素大小及间距参数设定工作,采用百分比单位代替固定像素值从而增强灵活性。同时也要关注导航栏按钮排列顺序等问题以免造成操作不便影响整体流畅度体验感下降。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值