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. 重新编译运行成功.

相关推荐
阿华的代码王国8 分钟前
【Android】卡片式布局 && 滚动容器ScrollView
android·xml·java·前端·后端·卡片布局·滚动容器
风起云涌~13 分钟前
【Android】桌面小组件开发
android·gitee
双鱼大猫2 小时前
从传统播放器到AI智能体:Xplayer 2.0的技术革新之路
android
CYRUS_STUDIO2 小时前
动态篡改 so 函数返回值:一篇带你玩转 Android Hook 技术!
android·c++·逆向
xzkyd outpaper2 小时前
Android中主线程、ActivityThread、ApplicationThread的区别
android·面试
就叫飞六吧3 小时前
mysql全量备份、全量恢复demo
android·mysql·adb
PenguinLetsGo4 小时前
关于 Android16 MOPS 函数指令非法问题
android
xzkyd outpaper6 小时前
Kotlin中Flow
android·开发语言·kotlin
byte轻骑兵6 小时前
【Bluedroid】bta_av_sink_media_callback(BTA_AV_SINK_MEDIA_CFG_EVT)流程源码分析
android·c++·bluedroid
鹏多多.7 小时前
flutter-完美解决键盘弹出遮挡输入框的问题
android·flutter·ios·前端框架