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
ios-deploy tool on command ios-deploy --detect --timeout 1 has the following example output.
[....] Waiting up to 1 seconds for iOS device to be connected
[....] Found iPhone 6s 'Ilya's iPhone' (1a1aa1a1111aa1a1a1a11aa1a1a1111aaaaa1a1a)
getIOSDevices parses this output to fetch device name and device identifier. But implementation of the parser is done so that it will have the following results:
device name
Ilya
device identifier
s iPhone' 1a1aa1a1111aa1a1a1a11aa1a1a1111aaaaa1a1a
As result ios-deploy tools run with invalid parameters, i.e.
ios-deploy -t 0 -9 -1 com.test.thalitest -i s iPhone' 1a1aa1a1111aa1a1a1a11aa1a1a1111aaaaa1a1a
Suggested Solution
ios-deploy doesn't have parameter to provide with clean list of devices names and devices identifiers. So this function should be added PR, but output needs to be considered.
Problem Description
ios-deploytool on commandios-deploy --detect --timeout 1has the following example output.getIOSDevicesparses this output to fetch device name and device identifier. But implementation of the parser is done so that it will have the following results:As result
ios-deploytools run with invalid parameters, i.e.Suggested Solution
ios-deploydoesn't have parameter to provide with clean list of devices names and devices identifiers. So this function should be added PR, but output needs to be considered.getIOSDevicesmethod