
报错
22
TonyChen-9102
这个作者很懒,什么都没留下…
展开
-
git浏览器可以访问,命令行访问不了
现象:命令行请求失败。fatal: unable to access 'https://github.com/xxx': Failed to connect to github.com port 443: Timed out解决:方法一(mac)host添加代理:sudo vim /etc/host ,添加如下内容ip 域名10.3.3.33 xxxx.ck.com.cn方法二 git 添加代理:设置代理git config --global http.proxy '10.3.3.3原创 2021-04-07 23:04:11 · 4446 阅读 · 3 评论 -
报错:Unfortunately you can‘t have non-Gradle Java modules and Android-Gradle modules in one project
Android项目报错:Unfortunately you can’t have non-Gradle Java modules and Android-Gradle modules in one project解决方法:1、Android Studio左上角找到File -> Invalidate Caches/Restart2、关掉Android Studio3、删掉.idea文件夹、*.iml文件4、打开Android Studio,重新导入项目...原创 2020-08-17 10:24:00 · 1137 阅读 · 1 评论 -
mac Error: Cannot find module ‘../lib/utils/unsupported.js‘
转接转载 2020-08-13 00:48:29 · 520 阅读 · 0 评论 -
flutter_boost 报错 boost_container.dart:Error:this expression has type void and cant be used
报错:boost_container.dart:Error:this expression has type ‘void’ and can’t be used可能是flutter sdk版本和flutter boost版本不对应导致。如下图:最新版本对应,请查看官网ps:更换flutter sdk版本原创 2020-06-12 15:23:35 · 2699 阅读 · 0 评论 -
报错:flutter: Connection refused, errno = 111, address = 127.0.0.1, port = 38870
报错:flutter: Connection refused, errno = 111, address = 127.0.0.1, port = 38870解决方法:原因原来是127.0.0.1 和localhost 指向的是虚拟机的地址,并非电脑本地。https://stackoverflow.com/questions/6760585/accessing-localhostport-from-android-emulator所以我们只需要修改接口的127.0.0.1或localhost就行了;转载 2020-06-01 22:28:04 · 2367 阅读 · 0 评论 -
解决Could not find manifest-merger.jar
AndroidStudio在编译时报错:Could not find manifest-merger.jar (com.android.tools.build:manifest-merger:26.1.2).Searched in the following locations: https://jcenter.bintray.com/com/android/tools/build...转载 2019-11-28 17:46:21 · 297 阅读 · 0 评论