#google play打包命令: zipalign -v 4 src.apk dest.apk #内存dump文件转换,之后使用mat工具查看 hprof-conv src.hprof dest.hprof #traceview分析命令 android.os.Debug.startMethodTracing(“trace_welcome”); android.os.Debug.stopMethodTracing(); adb pull /sdcard/trace_welcome.trace 拉取文件 traceview trace_welcome.trace 查看文件 也可使用DDMS查看
#mac path 路径配置 用户目录下新建.bash_profile文件。vi .bash_profile,写入目录如: export ANDROID_SDK=”/Users/zongwu/work/Android/sdk” export NDK_ROOT=”/Users/zongwu/work/android-ndk-r10e” export PATH=”$PATH:$ANDROID_SDK/tools” export PATH=”$PATH:$ANDROID_SDK/platform-tools” 按esc,输入:wq回车即可;
#mac修改目录所有者 sudo chown -R lwh man1
#adb查看占用cpu的进程 adb shell dumpsys cpuinfo
#gradle查找指定依赖 gradle -q app:dependencyInsight –dependency support-v4 –configuration _productDebugCompile #gradle查找依赖 gradle -q dependencies api:dependencies webapp:dependencies #gradle 列出子项目 gradle -q projects
#gradle查看tasks gradle tasks gradle :ad_sdk:tasks #gradle 查看任务信息 gradle -q help —task taskname
#gradle 查看构建日志–profile 参数可以收集一些构建期间的信息并保存到 build/reports/profile 目录下. grade build —profile
#gradle ui调用图形界面 gradle —gui
以上所述就是小编给大家介绍的《个人工作中容易忘记的命令》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 有了这个开源项目,再也不会忘记 Linux 命令啦~
- MySQL忘记密码
- [MySQl]MySQL忘记密码
- MySQL忘记密码了怎么办?
- 一次忘记密码引发的算法思考
- mysql忘记root密码修改办法
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Heuristic Search
Stefan Edelkamp、Stefan Schrodl / Morgan Kaufmann / 2011-7-15 / USD 89.95
Search has been vital to artificial intelligence from the very beginning as a core technique in problem solving. The authors present a thorough overview of heuristic search with a balance of discussio......一起来看看 《Heuristic Search》 这本书的介绍吧!