12 2020 档案
摘要:异常原文: FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':react-native-fast-image:generateRelea
阅读全文
摘要:异常原文: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':react-native-orientation:verifyReleaseResources'. > A fa
阅读全文
摘要:在使用git pull、git push、git clone的时候,或者在使用jenkins发版的时候,可能会报类似如下的错误: error: The requested URL returned error: 401 Unauthorized while accessing https://git
阅读全文
摘要:在做一个上传文件的功能,urllib不太好用,换到requests,但需要安装这个模块,pip install之后却报错: import requests ModuleNotFoundError: No module named 'requests' 看到之前的安装日志,发现是装在默认的2.7版本下
阅读全文
摘要:自己公司开发的app,突然被各大市场下架,腾讯管家报毒: 到腾讯云安全中心检测:https://console.cloud.tencent.com/ms/scan 根据指引到安全检测平台检测:(https://www.virustotal.com/gui/home/upload) 也同样扫描出异常:
阅读全文
摘要:PIL库要安装,直接使用pip安装: pip install pillow 可能会报错,我python是3.x版本的,好像2.x版本的没有pip(需要单独安装) 3.x版本的安装如果报一堆错出来,它会提示需先更新pip版本(命令也提示出来了,照着输入执行即可): `pip install --upg
阅读全文
摘要:从git上把项目拉下来后,想要跑起来,这个过程中的填坑记录。 1、在项目根目录下先npm install 下 2、在ios目录下执行pod install 报错: Cloning spec repo `cocoapods` from `https://github.com/CocoaPods/Spe
阅读全文
摘要:在linux服务器下。 一、配置环境 1、安装node wget https://nodejs.org/dist/v12.18.1/node-v12.18.1-linux-x64.tar.xz // 下载tar xf node-v12.18.1-linux-x64.tar.xz // 解压cd no
阅读全文
摘要:一、配置环境 iOS在环境这块比安卓的要简单一些,不用配置环境变量,只需要准备一台mac(原先想用linux来搞,被劝退)。安装或升级到xcode最新版。 测试下使用xcode工具打离线包,项目先初始化好,然后按标准流程打包即可: 1、从develop.appstore下载并导入到本地证书; 2、还
阅读全文