添加 Hook 消息接收与本地调试模式,便于 LSPosed/Telegram 联调。

新增 HookMessageReceiver 与通知服务 Hook 上报链路,支持未登录本地监听;补充 build/install 脚本并忽略 platform-tools 与 xposed 构建产物。
This commit is contained in:
2026-07-02 12:36:08 +08:00
parent f0eebb834e
commit 7c80b7073a
14 changed files with 246 additions and 57 deletions

View File

@@ -101,6 +101,16 @@
</intent-filter>
</receiver>
<!-- Xposed Hook 消息接收 -->
<receiver
android:name=".service.HookMessageReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.miraclegarden.smsmessage.action.HOOK_MESSAGE" />
</intent-filter>
</receiver>
</application>
</manifest>