摘要:
输入 netstat -ano|findstr “8080” 找到占用该端口的进程PID ,本机为 3864输入 tasklist|findstr 3864 获取占用程序名称,我的电脑为Applic... 阅读全文
摘要:
1. 原因logback.xml 无法被加载, 尝试了好久还是失败,哎,最后新建工程竟然可以,所以说还是项目的问题;原来项目依赖了两个slf4j.jar,是版本冲突了;2. 查找原因idea Terminal 输... 阅读全文
Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that matc
摘要:
错误展示:错误提示:Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that ... 阅读全文
摘要:
1. 邀请协作者点击settings2. 等待协作者接受邀请关注注册邮箱3. 协作者生成公钥一路回车即可ssh-keygen -t rsa -b 4096 -C "公众号:九点半编程"查看复制公钥cat ~/ss... 阅读全文
摘要:
提交代码到gitbub.comtouch README.md //新建说明文件git init //在当前项目目录中生成本地git管理,并建立一个隐藏.git目录git add . //添加当前目录中的所有文件... 阅读全文
摘要:
Git配置单个仓库的用户名邮箱$ git config user.name “gitlab’s Name”$ git config user.email “gitlab@xx.com”$ git config ... 阅读全文
摘要:
ssh生成单个公钥命令:ssh-keygen -t rsa -b 4096 -C "your_email@example.com"查看公钥:cat ~/.ssh/id_rsa.pub同时生成两个公钥:user1... 阅读全文
摘要:
仓库管理:添加或指定远程仓库地址git remote set-url origin "https://..."git config remote.origin.url "https://..."删除git rem... 阅读全文
摘要:
可在根目录gradle.properties中配置android.injected.testOnly=false 阅读全文
摘要:
错误信息:Caused by: org.gradle.api.resources.ResourceException: Could not get resource 'https://jcenter.bintra... 阅读全文