随机推荐
[转]android NTP时间同步
推荐使用 极客导航:极客导航(http://www.biumall.com/jike.html)相关文件:frameworks/base/services/java/com/android/server/SystemServer.javaframeworks/base/service...
PRODUCT_COPY_FILES预拷贝
在Android项目中需要使用PRODUCT_COPY_FILES 预拷贝文件和目录。 拷贝文件PRODUCT_COPY_FILES += device/qcom/msm8909/media/media_profiles_8909.xml:system/etc/media_profi...
[转]Monkey测试基本命令
推荐使用 读书导航 极客导航 :125啦极客导航(http://www.biumall.com/jike.html)adb shell monkey -p com.xxxx.xxxx–pct-touch 30 –pct-motion 30 –pct-trackball 0 –pct-na...
Android关闭selinux
前言简单记录一下关闭SELinux的命令或代码。正文获取SELinux状态adb shell getenforce返回值有两个Permissive //关闭了SELinuxEnforcing //打开了SELinux临时方法前提设备已root了哈临时的话,就是用adb来...
Linux signal 常见的信号含义表
前言简单记录一下Linux signal 常见的信号含义。PS : 本文摘抄,只是方便自己查阅而已。正文信号表 SIGHUP 1 /* Hangup (POSIX). */ 终止进程 终端线路挂断S...
Gson的简单使用
前言简单记录一下Gson的使用。Gson是Google提供的一个Java库,用于将Java对象转换为JSON格式数据或将JSON格式数据转换为Java对象。开源的库https://github.com/google/gson正文build.gradle中implementation '...