摘要: Android debug 调试,使用Attach debugger to Android process调试时,只显示手机,没有显示app进程 使用adb root获取root权限再调试 adb root 手机USB连接电脑,使用电脑的网络 下载 gnirehtet ~/Documents/App 阅读全文
posted @ 2025-05-09 12:26 jokerpoker 阅读(15) 评论(0) 推荐(0)
摘要: 服务命令 systemctl start doh-client.service # 启动 systemctl status doh-client.service # 查看状态 systemctl restart doh-client.service # 重新启动 systemctl enable - 阅读全文
posted @ 2024-10-02 10:59 jokerpoker 阅读(160) 评论(0) 推荐(0)
摘要: Archlinux 安裝.deb文件 sudo pacman -S dpkg sudo dpkg -i xx.deb flutter 多版本管理 fvm 修改 ~/.bash_profile,修改下載地址 export PUB_HOSTED_URL="https://pub.flutter-io.c 阅读全文
posted @ 2024-07-26 22:20 jokerpoker 阅读(194) 评论(0) 推荐(0)
摘要: 依賴可以使用implementation("com.arthenica:ffmpeg-kit-min:6.0-2"), 但是由於未來Android系統需要16 KB aligned,因此需要自行編譯。 下載NDK、Java 和 ffmpeg-kit 由於ffmpeg-kit只兼容到 r25,因此需要 阅读全文
posted @ 2025-06-02 20:33 jokerpoker 阅读(153) 评论(0) 推荐(0)
摘要: Linux 平台 NDK下载安装 NDK存在AndroidStudio中SDK Location目录下NDK目录中,或者去官网下载 NDK 下载 去ndk目录下执行以下命令,查看是否有效 ./ndk-build.cmd -v GNU Make 4.3 Built for x86_64-pc-linu 阅读全文
posted @ 2025-06-01 16:59 jokerpoker 阅读(172) 评论(0) 推荐(0)
摘要: 界面架构 生命周期 可组合项的生命周期通过以下事件定义: 进入组合,执行 0 次或多次重组,然后退出组合。 key 可组合项: 通过调用带有一个或多个传入值的键可组合项来封装代码块,这些值将被组合以用于在组合中标识该实例,重复使用 稳定类型: 对于相同的两个实例,其 equals 的结果将始终相同。 阅读全文
posted @ 2025-04-01 15:02 jokerpoker 阅读(75) 评论(0) 推荐(0)
摘要: Fiddler Fiddler拦截手机请求 Fiddler实现手机抓包——小白入门_fiddler手机抓包-CSDN博客 creation of the root certificate was not successful cd "d:\Program Files\Fiddler" makecer 阅读全文
posted @ 2025-04-01 09:37 jokerpoker 阅读(26) 评论(0) 推荐(0)
摘要: 去掉Google搜索栏 aosp/packages/apps/Launcher3/src_build_config/com/android/launcher3/BuildConfig.java 修改QSB_ON_FIRST_SCREEN为false public static final boole 阅读全文
posted @ 2025-03-25 09:56 jokerpoker 阅读(166) 评论(0) 推荐(0)
摘要: 裁剪应用 1. 修改 build/core/product.mk 添加PRODUCT_DEL_PACKAGES变量的声明 新增一行_product_single_value_vars += PRODUCT_DEL_PACKAGES # The first API level this product 阅读全文
posted @ 2025-03-25 09:55 jokerpoker 阅读(172) 评论(0) 推荐(0)
摘要: 编译android sdk lunch sdk_x86_64-eng 命令报错 FAILED: out/soong/build.ninja cd "$(dirname "out/host/linux-x86/bin/soong_build")" && BUILDER="$PWD/$(basename 阅读全文
posted @ 2025-03-25 09:53 jokerpoker 阅读(288) 评论(0) 推荐(0)
摘要: 环境: Android13源码下载和构建之后会占用接近300G空间,构建多个版本会占用更多, 16GB及以上内存,32GB及以上swap空间,否则编译初期容易OOM,导致终端闪退 ArchLinux: 6.2.13-arch1-1 (64-bit) JAVA:openjdk version "9" 阅读全文
posted @ 2025-03-25 09:50 jokerpoker 阅读(290) 评论(0) 推荐(0)
摘要: 基本操作 http://www.yiibai.com/git/ git init git add . git commit -m 'first' git remote add origin https://github.com// git pull origin master --allow-unr 阅读全文
posted @ 2025-03-17 14:44 jokerpoker 阅读(9) 评论(0) 推荐(0)