I'm running appium-doctor (2.0.25) on macOS (13.5.2) and getting a warning:
WARN AppiumDoctor ✖ bundletool.jar cannot be found
However, I already installed bundletool via brew:
brew install bundletool
And the installation worked because I can use the bundletool
command in Terminal.
which bundletool
returns /opt/homebrew/bin/bundletool
. So how do I get appium-doctor
) to recognize that I have bundletool
installed?
The solution of creating a symbolic link
aims to resolve the Appium-Doctor warning by making
bundletool.jar
seemingly available. However, this might not be effective if Appium-Doctor requires the actual Java archive file since the Homebrew installation ofbundletool
might not be a JAR file. A more reliable approach would be to download thebundletool.jar
directly from its official source and place it in a directory where Appium-Doctor can find it, ensuring full compatibility with its requirements.