打开 Finder—> 选中应用程序 —>找到并启动 自动操作.app —> 选择 应用程序 —> 在左边 Tab 找到 运行 applescript —> 编辑 —> 保存应用

编辑时输入的内容:

  1. on run {input, parameters}
  2. tell application "Terminal"
  3. set thePath to POSIX path of input as string
  4. do script "adb install -r " & thePath
  5. activate
  6. end tell
  7. end run

然后找一个 apk 文件,双击打开,然后选取刚保存的应用,即可。

参考

  1. 效率 | macOS 双击安装 APK