00-安装逆向常见问题解决

1. frida报错

1.1. spwan模式报错-1

错误表现:Failed to spawn: unexpectedly timed out while waiting for signal from process with PID ****  
命令  
adb shell  
-- 提权  
su  
-- 关闭启动应用优化USAP  
setprop persist.device_config.runtime_native.usap_pool_enabled false  
setprop persist.sys.usap_pool_enabled false  
-- 重启手机  
reboot  
  
重启后确认设备的系统属性  
命令  
adb shell  
-- 提权  
su  
-- 查找系统属性  
getprop|grep usap  
  
返回结果为:  
[persist.device_config.runtime_native.usap_pool_enabled]: [false]  
[persist.sys.usap_pool_enabled]: [false]  
  
再次运行frida亲测可用