Skip to content
Majd Alfhaily edited this page Mar 22, 2022 · 13 revisions

Frequently asked questions

Are my Apple ID credentials stored safely?

The tool does not store your credentials on any remote server and only communicates with Apple servers directly. Feel free to go through the source code.

Will my Apple ID get flagged for using this tool?

Maybe, but probably not. While this tool communicates with iTunes and the App Store directly, mimicking the behavior of iTunes running on macOS, I cannot guarantee its safety. I recommend using a throwaway Apple ID. Use this tool at your own risk.

Can I use this tool to download paid apps without paying for them?

No. This is is not a piracy tool; you can only download apps that you own. Essentially, your account must already have a license for the app you are trying to download.

Can I use this tool to sideload unsupported iOS apps on Apple Silicon Macs?

While it was previously possible to download ipa files using this tool and install them on Macs running on Apple Silicon, this is no longer the case as of recently. Apple stopped serving macOS compatible sinf data for the app package. You could, however, use this tool to get a copy of the iOS app and use a jailbroken iOS device to strip any codesigning requirements then codesign the app again using an adhoc signature to run on Apple Silicon.

Troubleshooting

dyld: Library not loaded: @rpath/libswift_Concurrency.dylib
    Referenced from: /opt/homebrew/bin/ipatool
    Reason: image not found

macOS 11.3 or later

Install Xcode from the App Store and run the following command:

echo 'export DYLD_LIBRARY_PATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/macosx' >> .zshrc

Restart your current shell session for changes to take effect.

macOS 10.15 - 11.2

Install the Swift 5.5 runtime:

curl -O https://download.swift.org/swift-5.5.3-release/xcode/swift-5.5.3-RELEASE/swift-5.5.3-RELEASE-osx.pkg
sudo installer -pkg swift-5.5.3-RELEASE-osx.pkg -target
echo 'export DYLD_LIBRARY_PATH=/Library/Developer/Toolchains/swift-5.5.3-RELEASE.xctoolchain/usr/lib/swift/macosx' >> .zshrc

Restart your current shell session for changes to take effect.

Clone this wiki locally