
工具
杨鑫校
学无止境!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vim配置
set nufiletype onsyntax enablesyntax onset rulerset showmatchset ignorecaseset incsearchset statusline+=%fset tabstop=4set softtabstop=4set shiftwidth=4set expandtabset cindentset autoreadset magicset autowriteset autoindentset confirm.原创 2021-09-07 16:16:43 · 243 阅读 · 0 评论 -
windows patch adb permission
patch文件给某个app授权及撤销:执行结果如下,涂掉的是包名脚本内容:grant_dl.bat@echo grant permission of sdcard rw for pkg_name@adb shell pm grant pkg_name android.permission.READ_EXTERNAL_STORAGE@adb shell pm grant pkg_name android.permission.WRITE_EXTERNAL_STORAGE@adb .原创 2021-05-12 14:00:24 · 262 阅读 · 1 评论 -
Android mk文件指定aapt參數不压缩指定资源
例:指定不压缩tflite后缀文件。LOCAL_AAPT_FLAGS += -0 "tflite"原创 2020-11-27 16:41:30 · 518 阅读 · 0 评论 -
ubuntu 切换python小脚本(py2.7&py3.8)
更新cscope没事干,把小脚本记录下:sw_py.sh:#!/bin/bashread -p "The version you want(2、3): " numecho "Changing to java --------->" $num#slif [[ $num -eq 2 ]];then echo "pwd"| sudo -S unlink /usr/bin/python echo "pwd"| sudo -S ln -s /usr/bin/python2.7 ...原创 2020-10-30 21:22:12 · 1362 阅读 · 2 评论