Magisk/Riru/LSPosed安装

Magisk/Riru/LSPosed安装

1: Magisk安装下载

​ 首先附上Magisk地址: https://github.com/topjohnwu/Magisk/releases

  1. 下载应用apk.
  2. 安装后,根据应用内提示重新安装,重启手机

2: Riru安装

  1. https://github.com/RikkaApps/Riru
  2. https://github.com/RikkaApps/Riru/releases/tag/v26.1.7
  3. 下载riru-v26.1.7.r530.ab3086ec9f-release.zip
  4. push到手机
  5. magisk 本地安装.
  6. 重启手机

3: Lsposed安装

  1. https://github.com/LSPosed/LSPosed/releases下载最新版本[LSPosed-v1.9.2-7024-riru-release.zip](https://github.com/LSPosed/LSPosed/releases/download/v1.9.2/LSPosed-v1.9.2-7024-riru-release.zip)
  2. push到手机
  3. magisk 本地安装. 此时提示riru not install
  4. 未找到原因, 修改magisk,开启zygisk
  5. 下载 LSPosed-v1.9.2-7024-zygisk-release.zip
  6. 重新本地安装,安装成功.
  7. 重启 发现桌面未有图标生成. (由于只是桌面的快捷方式启动,在应用列表中不会找到.) 另外导航栏中会有LSPosed的通知栏,点击可打开管理器.

4: Xposed相关

  1. 长时间没运行之前xposed的demo.

  2. compileOnly 'de.robv.android.xposed:api:82'依赖找不到404了.

    具体的错误如下:

    Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.

    Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'.

    Could not find de.robv.android.xposed:api:82.

    Searched in the following locations:

    Possible solution:

  3. 解决办法:

    groovy 复制代码
    allprojects {
        repositories {
            google()
            jcenter()
    		// 添加此库
            maven { url "https://api.xposed.info/" }    }
    }
  4. 重新编译运行成功.

相关推荐
xiangpanf9 小时前
Laravel 10.x重磅升级:五大核心特性解析
android
robotx12 小时前
安卓线程相关
android
消失的旧时光-194313 小时前
Android 面试高频:JSON 文件、大数据存储与断电安全(从原理到工程实践)
android·面试·json
dalancon14 小时前
VSYNC 信号流程分析 (Android 14)
android
dalancon14 小时前
VSYNC 信号完整流程2
android
dalancon14 小时前
SurfaceFlinger 上帧后 releaseBuffer 完整流程分析
android
用户693717500138415 小时前
不卷AI速度,我卷自己的从容——北京程序员手记
android·前端·人工智能
程序员Android15 小时前
Android 刷新一帧流程trace拆解
android
墨狂之逸才16 小时前
解决 Android/Gradle 编译报错:Comparison method violates its general contract!
android
阿明的小蝴蝶17 小时前
记一次Gradle环境的编译问题与解决
android·前端·gradle