Couldn't register com.XXXXX.deviceapp with the bootstrap server

后端 未结 6 1658
粉色の甜心
粉色の甜心 2021-01-31 13:45

I am getting this error while running in device please do need full help to solve this;

Couldn\'t register com.XXXXX.deviceapp with the bootstrap server.

相关标签:
6条回答
  • 2021-01-31 14:12

    This seems to happen with the LLDB debugger when an app is paused at a breakpoint and the app is run again from xcode. The result is a zombie process on either the device or the development machine (when debugging in the simulator).

    Only way to resolve seems to be a restart of the iDevice or the machine running the simulator.

    Stopping the app completely before running it again in the debugger appears to prevent the problem from happening.

    0 讨论(0)
  • 2021-01-31 14:14

    I have had this happen where I needed to restart the phone before error would go away.

    Deleteing the app, restarting Xcode, clean build, didn't do anything. I shut the phone down and bought it back up and the error went away.

    0 讨论(0)
  • I managed to solve the issue by deleting my device form the Xcode 4.4 Organizer:

    1. disconnect your device from your computer.
    2. in Xcode: Window => Organizer
    3. Choose the first tab ("Devices") from the top panel
    4. Right click your device from the list at the left side of the Organizer, and choose "remove from organizer"
    0 讨论(0)
  • 2021-01-31 14:28

    kill all Simulator processes, that can cause this error as well. using following terminal command

    kill -9 `ps ax | grep Simulator | grep -v grep | awk '{print $1}'` 
    

    Reference

    0 讨论(0)
  • 2021-01-31 14:30

    I've run into that with the simulator and the only solution I've found is to reboot the computer running Xcode.

    0 讨论(0)
  • 2021-01-31 14:34

    Most annoying bug. Only solution at this point:

    If you're trying to run on a device: Shut off and restart device

    If you're trying to run in simulator on Mac: restart your Mac

    You can also do a Force Quit on the process via the Activity Monitor.

    0 讨论(0)
提交回复
热议问题