自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(17)
  • 资源 (1)
  • 收藏
  • 关注

原创 Java删除所有注释 AndroidStudio 删除所有注释

AndroidStudio 删除所有注释 正则匹配。

2023-08-18 17:19:09 326 1

原创 Android 9.0 app 进程保活白名单

在 Android 9 系统rom定制化开发过程中,经常需要对app进程实现保活管理。如在系统内存不足时,app进程不能被关闭,并且即使在最近任务中上划也不能结束任务进程。

2023-08-16 11:50:16 725 3

原创 AOSP默认授予权限

AOSP默认授予权限

2023-08-02 10:04:37 669

原创 Xposed 开发

新建 class 实现 IXposedHookLoadPackage 接口。在 build.gradle 中加入。下载jar包,导入工程libs。Hook multiDex 方法。Hook 复杂自定义参数。

2023-07-27 09:02:07 663 1

原创 Frida 脱壳

【代码】Frida 脱壳。

2023-07-19 17:19:41 522

原创 Repo 流程

First, repo init creates the .repo directory, clones the git repository https://android.googlesource.com/tools/repo to .repo/repo, and the git repository specified with the -u option to a bare repository at .repo/manifests.git.After that, it creates the .

2022-05-25 10:43:59 183

原创 dpi计算 density 取值范围

PPI/DPI计算公式Density = sqrt((wp * wp) + (hp * hp)) / diwherewp is width resolution in pixels,hp is height resolution in pixels, anddi is diagonal size in inches.DENSITY 取值范围ro.sf.lcd_density 可以为以下数值范围常量具体数值120 dpiDENSITY_LOW120(120

2022-05-10 11:17:19 436

原创 谷歌使用技巧 20 招

第一招:使用搜索栏下方的 Tab 栏,可以快速搜索 视频 图片 新闻第二招:使用引号,默认搜索会去搜索包含输入关键字的结果,用"holy shit" 会去进行整句搜索第三招:使用连字符剔除结果. mcu -marvel :搜索mcu并剔除 包含 marvel 的结果第四招:使用冒号过滤指定网站结果,idney Crosby site:nhl.com :只从指定网站 nhl.com 中搜索关键字第五招:搜索哪些网页引用的该网页,link:nytimes.com :搜索那些引用了 nytimes.co.

2022-05-07 10:32:01 533

原创 Android java.lang.NoSuchMethodError: No virtual method ;or its super classes (declaration of

No virtual method *** in class ***or its super classes (declaration of '***' appears in /system/framework/framework.jar!classes3.dex)AOSP No virtual method

2022-03-30 19:20:42 10225 3

原创 android 10 自定义系统服务接口给app调用

android 10 自定义系统服务接口给app调用android 10 自定义系统服务,生成成jar包安卓自定义系统服务

2022-03-30 19:03:30 4890

原创 init.rc 启动 shell 脚本 开机执行脚本 init.rc执行shell脚本

init.rc 启动 shell 脚本init.rc执行shell脚本开机执行脚本

2022-03-28 15:47:11 7762 1

原创 AOSP 安卓源码 导入AndroidStudio 跳转,查看源码

AOSP 导入AndroidStudio 跳转,查看系统源码

2022-03-21 14:27:10 1983

原创 Your anti-virus program might be impacting your build performance.解决方案

Your anti-virus program might be impacting your build performance.解决方案在使用 AndroidStudio 时,经常会弹出框提示:Your anti-virus program might be impacting your build performance. Android Studio checked the following directories:C:\Users\Julian\AppData\Local\Google\An

2021-10-11 15:20:55 7839

原创 windows 清除 .git 文件夹

有时我们需要将 git 管理项目中的 .git文件夹删除,但是如果项目太多,一个一个手动删除太麻烦,这时候可以用 bat 批处理文件删除,具体操作如下:桌面 “右击”-“新建文本文档”,此时桌面会新建一个 “新建文本文档.txt” 的文件将下面的文字复制粘贴到 "新建文本文档.txt " 文件中,并保存@echo 删除当前目录和子目录的所有.git的文件和文件夹@for /r . %%a in (.) do @if exist "%%a/.git" rd /s /q "%%a/.git"@ec

2021-09-10 17:07:39 3869

原创 Android Studio Arctic Fox gradle 配置

Android Studio Arctic Fox build.gradle allprojects 第三方maven库配置build.gradle 配置1. 找不到依赖2.allprojects() 错误解决方法build.gradle 配置Android Studio Arctic Fox 已经发布,用了全新的命名规则,在使用过程中,配置 build.gradle 出现了以下问题,记录以下。1. 找不到依赖Execution failed for task ':app:checkDebugAar

2021-08-13 09:13:23 2424

原创 Android NDK 为什么要 extern “C”

由于C++ 函数支持重载,就是一个C++函数,可以有不同的参数个数和类型,编译后函数名会变。为了避免ndk load 的C/C++库的时候找不到这个函数,索性都用 C 方式。JAVA的JNIPython 的ctypes 都如此

2021-07-13 10:26:05 324

原创 Python3 Requests 字符编码问题

Python3 Requests 字符编码问题requests 网络请求之后得到response.content 为byte 类型数据,想要显示为可读的文本,只需print(response.content.decode("unicode-escape"))一张表二进制decode(“unicode-escape”)字符串Stringtext.encode(‘latin-1’).decode(“unicode-escape”)...

2021-05-21 22:24:54 315

windows git 删除版本控制 清理.git文件夹 批量处理

Windows系统条件下,批量清除git版本管理配置文件,批量删除.git文件夹 使用方法:下载将该脚本文件,拷贝到要清除的项目的文件夹目录下,双击bat文件即可。

2021-09-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除