1. 在Android模拟器上安装和卸载APK包1.adb install [-l] [-r] < file> - push this packagefile to the device and install it2.('-l' means forward-lock the app)('-r' means reinstall the app, keeping its data)3.a...
go modules炒得火热,今早学习下,整体挺好的,入手快捷,只是在配置被墙掉的包时,发现有点点小坑,现与学友分享学习。在测试Emitter时,需要用到"golang.org/x/net"包,go mod拉取不到的原因就不废话了。试用 go mod edit 命令,有两个flag:1、-require=path@version :手动加入依赖包;2、-replace=old[@...