pixel XL内核编译 配置 操作系统 :虚拟机 ubuntu 16.04 内存 :8G 硬盘 :150G CPU :4核 编译过程注: 编译环境见pixel XL源码编译 1. 源码分支获取根据手机型号选择分支名称 1https://source.android.google.cn/setup/build/building-kernels?hl=zh-cn#customize-build Pixel XL的分支名称 2021-08-22 android android rom 内核
adb查看当前Activity Android 8.1前1adb shell dumpsys activity | grep "mFocus" Android 8.1 后1adb shell dumpsys activity | grep "mResume" 2021-08-22 android android adb
adb设置代理 设置代理1adb shell settings put global http_proxy 127.0.0.1:8888 移除代理(需要重启):1234567adb shell settings delete global http_proxyadb shell settings delete global global_http_proxy_hostadb shell settings del 2021-08-22 android android adb
am常用命令 拨打电话100861adb shell am start -a android.intent.action.CALL -d tel:10086 打开网址1adb shell am start -a android.intent.action.VIEW -d http://gityuan.com 启动Activity 启动包名为com.yuanhh.app,主Activity为.MainActi 2021-08-21 android android adb am
SpringBoot+JWT Token验证 1. pom.xml 添加依赖12345 <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>3.8.1</version></dependency> 2021-08-21 java JWT java springboot
Frida加载APK/DEX/SO/dylib/文件并调用方法 Android加载APK并调用方法1. AndroidStudio创建项目创建returnNum方法 2. build项目,将apk push手机中1adb push 1.apk /data/local/tmp 3. Frida加载APK调用方法1234567891011121314151617181920var DEXFactory = nullfunction loadAPK(path 2021-08-21 frida android frida hook