“Could not connect to lockdownd” while attempting to run flutter app

后端 未结 3 1630
离开以前
离开以前 2021-01-06 05:19

I am following the Get Started tutorial.

I can install everything, flutter doctor returns all checkmarks but in the end there is a message:

3条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-06 05:30

    I was having similar issues, and resolved them using the below. Hopefully this will help you. flutter doctor was telling me the answers, but they were a bit buried. Look for something like this:

    [-] iOS toolchain - develop for iOS devices (Xcode 8.3.3)
        • Xcode at /Applications/Xcode.app/Contents/Developer
        • Xcode 8.3.3, Build version 8E3004b
        ✗ libimobiledevice and ideviceinstaller are not installed or require updating. To update, run:
            brew uninstall --ignore-dependencies libimobiledevice
            brew install --HEAD libimobiledevice
            brew install ideviceinstaller
        • ios-deploy 1.9.1
        ✗ ios-deploy out of date (1.9.2 is required). To upgrade:
            brew upgrade ios-deploy
        • CocoaPods version 1.2.0
    

    There are four brew commands in there to run. When I did them, this problem disappeared for me. Good luck!

提交回复
热议问题