You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While fixing the crash this modification made it impossible to pass command line arguments to ios application. The lldb.py should read
if len(args) > 1:
args_arr = shlex.split(args[1])
else:
args_arr = shlex.split('{args}')
instead of
if len(args) > 1:
args_arr = shlex.split(args[1] and args[1] or '{args}')