- 发布:2023-05-06 10:52
- 更新:2023-05-06 13:29
- 阅读:368
【报Bug】ios打包报错 https://ide.dcloud.net.cn/build/errorLog/63e435c0-ebb8-11ed-a4a9-db675fbea53e
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10
HBuilderX类型: 正式
HBuilderX版本号: 3.7.11
手机系统: 全部
手机厂商: 苹果
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
测试过的手机:
操作步骤:
https://ide.dcloud.net.cn/build/errorLog/63e435c0-ebb8-11ed-a4a9-db675fbea53e
https://ide.dcloud.net.cn/build/errorLog/63e435c0-ebb8-11ed-a4a9-db675fbea53e
预期结果:
https://ide.dcloud.net.cn/build/errorLog/63e435c0-ebb8-11ed-a4a9-db675fbea53e
https://ide.dcloud.net.cn/build/errorLog/63e435c0-ebb8-11ed-a4a9-db675fbea53e
实际结果:
https://ide.dcloud.net.cn/build/errorLog/63e435c0-ebb8-11ed-a4a9-db675fbea53e
https://ide.dcloud.net.cn/build/errorLog/63e435c0-ebb8-11ed-a4a9-db675fbea53e
bug描述:
https://ide.dcloud.net.cn/build/errorLog/63e435c0-ebb8-11ed-a4a9-db675fbea53e
FullStack - 【插件开发】【专治疑难杂症】【ios上架、马甲包、白包、过审、已成功上架过几百个】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=22130】【非诚勿扰】QQ:543610866
TBScanSDK 扫码插件有问题
BoredApe - 有问题就会有答案。
Undefined symbols for architecture arm64:
\"_OBJC_CLASS_$_ALAssetsLibrary\", referenced from:
objc-class-ref in TBScanSDK(TBScanViewController.o)
\"_OBJC_CLASS_$_CMMotionManager\", referenced from:
objc-class-ref in TBScanSDK(TBScanViewController.o)
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
为了避免App隐私合规检测报包含麦克风、相机/相册、运动等敏感权限,从HBuilderX3.6.11
版本开始,将App
打包默认包含的Barcode
(扫码)、Camera&Gallery
(相机和相册)、Orientation
(传感器)、Record
(录音)等调整为独立功能模块。您使用的支付宝原生扫码插件使用了Camera&Gallery
、Orientation
模块中配置的系统库AssetsLibrary.framework
、CoreMotion.framework
,您打包时没有勾选以上模块,所以打包失败,可以通过以下解决方案处理:
方案一. 在manifest.json的源码视图(可视化界面中没有使用Orientation模块配置)中配置以下模块:
"app-plus" : {
"modules" : {
"Camera": {},
"Orientation": {}
}
}
请参考:[注意事项](https://uniapp.dcloud.net.cn/tutorial/app-modules.html#%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9)
shaun5 (作者)
已经按照插件的方法运行了,之前也是可以的,现在不能用了
2023-05-06 12:40