摘要: AOSP中最大值 最小值 frameworks/base/core/res/res/values/config.xml <integer name="config_screenBrightnessSettingMaximum">255</integer> <item name="config_scr 阅读全文
posted @ 2023-02-06 14:44 梦过无声 阅读(198) 评论(0) 推荐(0)
摘要: 源码8.1 packages/apps/Settings/src/com/android/settings/deviceinfo/storage/StorageSummaryDonutPreferenceController.java /** * Updates the state of the d 阅读全文
posted @ 2022-12-20 17:34 梦过无声 阅读(379) 评论(0) 推荐(0)
摘要: JNI_OnLoad中注册 // NativeOnLoad.cpp #include <jni.h> extern jint register_com_example_anative_HardwareName(JNIEnv*); jint JNI_OnLoad(JavaVM *vm, void *r 阅读全文
posted @ 2022-12-19 16:01 梦过无声 阅读(58) 评论(0) 推荐(0)
摘要: 先看错错误,使用openOptionsMenu() 的时候onMenuVisibilityChanged 没有回调 , 到真机跑了跑确是有回调的 取了下小米的堆栈信息 这里先贴下调用流程: Activity.openOptionsMenu() -- > mWindow.openPanel(Windo 阅读全文
posted @ 2022-12-09 19:42 梦过无声 阅读(133) 评论(0) 推荐(0)
摘要: Usb Hid 协议,可能是没有USB设备驱动 SElinux相关,几百条太多了不截图了 adjtimex(nullptr)没有返回-1 没有Loop设备用于挂载 以及指纹不对 SElinux禁止创建硬链接,我们可以创建所以失败 removexattr()应该返回ENOTSUP 但是我们返回是没有权 阅读全文
posted @ 2022-12-08 20:08 梦过无声 阅读(95) 评论(0) 推荐(0)
摘要: // TODO: currently treat all exceptions the same. In future consider different recovery mechanisms for time out's vs IOExceptions 在android 8.1中 处理异常还没 阅读全文
posted @ 2022-12-08 20:06 梦过无声 阅读(188) 评论(0) 推荐(0)
摘要: Interceptor使用 native函数原型 long total; template<typename T> T addNum(T const x, T const y) { return x + y; } extern "C" jint getNum(JNIEnv *env, jobject 阅读全文
posted @ 2022-11-22 21:28 梦过无声 阅读(279) 评论(0) 推荐(0)
摘要: ##vscode环境搭建 直接cloen代码,然后在vscode打开文件夹 How to compile & load $ git clone git://github.com/oleavr/frida-agent-example.git $ cd frida-agent-example/ $ np 阅读全文
posted @ 2022-11-17 10:09 梦过无声 阅读(572) 评论(0) 推荐(0)
摘要: 先上参考链接 如何使用 TRACE_EVENT() 宏来创建跟踪点 Using the TRACE_EVENT() macro 这是自己总结的图 最后是实操可能碰到的一些问题 包含TRACE_EVENT()宏的头文件必须遵循特定格式 这部分可以参考include/trace/events中别人的写法 阅读全文
posted @ 2022-11-02 17:10 梦过无声 阅读(555) 评论(0) 推荐(0)
摘要: 本文ASOP源码版本8.1,下面是相关改动文件 Changes not staged for commit: (use "git add/rm <file>..." to update what will be committed) (use "git checkout -- <file>..." 阅读全文
posted @ 2022-10-24 09:54 梦过无声 阅读(512) 评论(0) 推荐(0)