雷电安卓模拟器解决Could not load available ZIP files.Pull down to try again问题

首先雷电模拟器安装xposed Install.apk,提示如图

一、xposed-x86_64.zip
下载xposed作者模拟器是x86_64的
https://github/youling257/XposedTools/files/1931996/xposed-x86_64.zip
如果模拟器是x86下载下面这个
https://dl-xda.xposed.info/framework/

二、下载script.sh
找到安卓对应版本,作何雷电模拟器是7.1,搜索对应为安卓7.1 sdk

  • x86_64下载这个
    https://forum.xda-developers/attachment.php?attachmentid=4489568&d=1525092710
  • x86的下载这个
    下载script.txt
    https://forum.xda-developers/attachments/script-txt.4489568/
    改名为script.sh

解压一下xposed压缩包
创建文件夹xposed, 把xposed压缩包中的system文件夹和script.sh放入xposed文件夹

打开cmd执行如下命令

adb  devices
# adb push命令
adb push xposed路径(拖到cmd即可) /system
adb shell
su
cd /system/xposed
# 给权限777
chomd 777 script.sh
sh script.sh

报错处理

Xposed framework installer

**************************
Xposed framework installer
**************************
- Checking environment
  Xposed version: 89
! Wrong platform: x86_64
! This file is for: x86
! Please download the correct package
! for your platform/ROM!

该错误是Wrong platform: x86_64模拟器平台是X86_64但是安装版本是x86的,与模拟器不对应

安装成功

**************************
Xposed framework installer
**************************
- Checking environment
  Xposed version: 89
- Placing files
cp: bad 'system/priv-app/XposedInstaller/XposedInstaller.apk': No such file or directory
chmod: /system/priv-app/XposedInstaller/XposedInstaller.apk: No such file or directory
chcon: /system/priv-app/XposedInstaller/XposedInstaller.apk: No such file or directory
- Done
```

更多推荐

雷电安卓模拟器解决Could not load available ZIP files.Pull down to try again问题