ld: library not found for -lDoubleConversion
node
rm -rf node_modules
npm install
killall -9 node
npm start -- --reset-cache
react-native run-ios
----
react-native run-android
that worked but got stuck at 0% on the simulator device, so I deleted the APK off the simulator and ran react-native run-android again.
复制代码
也能够尝试以下解决办法react
搜到了一个解决办法比较清晰地址 主要内容截图android
真机调试时报错:The executable was signed with invalid entitlements. The entitlements specified in your application’s Code Signing Entitlements file are invalid, not permitted, or do not match those specified in your provisioning profile. (0xE8008016).ios
真机调试时报错: Could not launch “demo” pan的 iPhone has denied the launch request. Internal launch error: process launch failed: Unspecifiedweb
archive打包完后不当心关闭了,若是再次打开? 点击xcode中window -> organizer npm
上传苹果版本时错误解决办法:No suitable application records were found. Verify your bundle identifier react-native
ERROR ITMS-90034: "Missing or invalid signature. The bundle 'com.mytijian.apptest' at bundle path 'Payload/app.app' is not signed using an Apple submission certificate."
复制代码
iOS APP 打包新版本上传到App Store出错:ERROR ITMS-90034 "Missing or invalid signature.The bundle'xxx.xxx.xxx' axcode
归纳为:bash
clang: error: linker command failed with exit code 1 (use -v to see invocation)app
另外注意不要把apptests里面的archive勾选上,否则会打包报错
到目前为止,被拒了两次:
缘由之一:主要是由于提供的屏幕截图上的数据与真实数据不匹配,屏幕截图上的数据内容是咱们的UI示例图,里面的数据只是示例,从发送的邮件来看这样是不行的
缘由之二:咱们的app是经过手机验证码登陆的,第一次提交审核时,由于考虑到验证码是动态的,因此就没有提供帐号密码(由于不能只提供帐号,不提供密码),在备注中说明了这个状况,但这样是不行的,被拒了
解决办法:
1.设计师从新作图,图中的内容所有用真实的数据,再也不是测试数据 2.准备一个固定的帐号密码,在登陆时特殊处理
说咱们的app crashing,排查发现是咱们的webview中有上传头像功能,没有申请相机权限,增长后从新提交审核了