2020年11月21日

angular编译内存不足的问题

摘要: An unhandled exception occurred: Call retries were exceededSee "/tmp/ng-DnpDnh/angular-errors.log" for further details. 在package.json中,把build改为:node - 阅读全文

posted @ 2020-11-21 09:40 barani 阅读(657) 评论(0) 推荐(0) 编辑

2020年9月30日

xcode12下carthage无法编译的问题

摘要: 具体报错如下:have the same architectures (arm64) and can't be in the same fat output file 1、把以下内容写入文件 /tmp/helper.xcconfig EXCLUDED_ARCHS__EFFECTIVE_PLATFOR 阅读全文

posted @ 2020-09-30 19:34 barani 阅读(1502) 评论(0) 推荐(0) 编辑

2020年8月15日

godaddy更新ssl证书私钥文件的BOM问题

摘要: 在godaddy更新了ssl证书,它给我生成了一个新的私钥,名字叫generated-private-key.txt 我把它放到ubuntu的apache下,结果一直报错: [ssl:error] [pid 6080:tid 139733188327296] SSL Library Error: e 阅读全文

posted @ 2020-08-15 22:41 barani 阅读(460) 评论(0) 推荐(0) 编辑

2020年8月4日

git删除submodule

摘要: git submodule deinit -f -- submodule/modulename git rm --cached submodule/modulename 阅读全文

posted @ 2020-08-04 14:13 barani 阅读(689) 评论(0) 推荐(0) 编辑

2020年8月1日

Mob的ShareSDK中,引入FacebookSDK之后,APP耗电量剧增的问题

摘要: 大概如图所示,变成了高耗电量。 经过一番排查,发现删除ShareSDK中的FacebookSDK之后,耗电量就变得正常了。 在日志中发现,FacebookSDK会尝试向“https://graph.facebook.com/v6.0”发送数据。 根据Facebook官网的提示,把FacebookAu 阅读全文

posted @ 2020-08-01 18:14 barani 阅读(418) 评论(0) 推荐(0) 编辑

2020年6月22日

Angular中导入html2canvas

摘要: Install: npm install --save html2canvasnpm install --save @types/html2canvas Import: import * as html2canvas from 'html2canvas'; 阅读全文

posted @ 2020-06-22 16:56 barani 阅读(697) 评论(0) 推荐(0) 编辑

angular中引入highcharts作为独立module的问题

摘要: 一开始直接在app.module中使用highchargs是没问题的。 后来把highcharts单独放在一个公共的module中,就一直起不来,报如下的错误: 日志大概如下: [Highcharts]="Highcharts"~~~~~~~~~~~~~~~~~~~~~~~~~error NG800 阅读全文

posted @ 2020-06-22 16:12 barani 阅读(560) 评论(0) 推荐(0) 编辑

2020年5月17日

XCode打包出现错误:"Nib file 'Main~iphone.nib' was not found.

摘要: App Store Connect Operation ErrorERROR ITMS-90030: "Nib file 'Main~iphone.nib' was not found. Please ensure the specified file is included in the bund 阅读全文

posted @ 2020-05-17 00:36 barani 阅读(543) 评论(0) 推荐(0) 编辑

2020年4月26日

Android Studio中,查找所有需要国际化的字符串

摘要: 在Menu的“Analyze”中,选择“Run Inspection By Name”,然后输入“Hardcoded strings”,执行后,可以找到所有没有加入strings.xml的字符串。 按Alt + Enter,可以把它加入到resource文件中 阅读全文

posted @ 2020-04-26 16:12 barani 阅读(466) 评论(0) 推荐(0) 编辑

2020年4月24日

android中引入yoga

摘要: 新版的yoga直接在gradle中就可以导入了 gradle配置: implementation 'com.facebook.yoga.android:yoga-layout:1.16.0' implementation 'com.facebook.soloader:soloader:0.9.0' 阅读全文

posted @ 2020-04-24 23:56 barani 阅读(1114) 评论(0) 推荐(0) 编辑

导航