工具|不修改prop即可让APK开启可调试Xpose模块

此文章只为学习而生,请勿干违法违禁之事,本公众号只在技术的学习上做以分享,本篇文章属于开源项目的介绍,仅发现并做分享。

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 shellsumagisk resetprop ro.debuggable 1stop;start; 

这种方式重启会失效

03使用方式

图片

在LSP这开启模块,然后在APP上进行勾选即可针对某APP进行可调式的HOOK。

图片

直接进行勾选了,不需要通过命令在那配置了。

04下载链接

https://github.com/Palatis/XAppDebug/releases/download/1.0.6/tw.idv.palatis.xappdebug-1.0.6-100006-app-release-signed.apk

声明:文中观点不代表本站立场。本文传送门:https://eyangzhen.com/424684.html

联系我们
联系我们
分享本页
返回顶部