tubiebutu 2019-06-27
最近在开发ionic混合开发的app.在进行ios打包时,相机调不起.
要不就是权限问题,要不就是插件版本问题.于是看看xcode有没有报什么错误;要是没有的话,可以用try{}.catch(){}捕获异常看看报什么错误.
xcode表示This app has crashed because it attempted to access privacy-sensitive data without a usage descripti
使用xcode 打开xxx.pbxproj
打开Info.plist直接添加
或者直接添加
<key>NSCameraUsageDescription</key>
<string>cameraDesciption</string>
加上上面这个,给调用相机添加描叙即可 问题就解决啦