此文章只为学习而生,请勿干违法违禁之事,本公众号只在技术的学习上做以分享,本篇文章属于开源项目的介绍,仅发现并做分享。
01
项目介绍
– 项目名称:XAppDebug
– 项目地址:https://github.com/Palatis/XAppDebug
– 项目描述:这个 xpose 模块允许您为任何您想要的应用程序切换可调试状态。
02
正常开启可调式的方式
01
修改AndroidMainfest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapp">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:debuggable="true"> <!-- 添加 debuggable 属性 -->
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
02
magisk命令控制
adb shell
su
magisk resetprop ro.debuggable 1
stop;start;
这种方式重启会失效
03使用方式
在LSP这开启模块,然后在APP上进行勾选即可针对某APP进行可调式的HOOK。
直接进行勾选了,不需要通过命令在那配置了。
04下载链接
声明:文中观点不代表本站立场。本文传送门:https://eyangzhen.com/424684.html