doge1024

Results 2 comments of doge1024

1. 去frida的[下载地址 ](https://github.com/frida/frida/releases) 下载 `frida-gadget-12.8.7-ios-universal.dylib.gz` 解压后的文件重命名为`gadget-ios.dylib` 2. 新建文件夹并移动文件至 `~/.cache/frida/gadget-ios.dylib` 3. 我使用的版本为12.8.7,如果版本不同建议找对应版本文件尝试:[官方文档](https://frida.re/docs/ios/) 即可解决。

Fix Xcode14 bundle need sign ``` post_install do |installer| installer.pods_project.targets.each do |target| if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle" target.build_configurations.each do |config| config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' end end end end ```