when connecting iPhoneXR ios12.1, prompt device with udid "XXX" not found.
sherry1993 opened this issue · 4 comments
sherry1993 commented
Steps to reproduce
./run.sh
Expected results
Actual results
++ system_profiler SPUSBDataType
++ sed -n -E -e '/(iPhone|iPad)/,/Serial/s/ *Serial Number: *(.+)/\1/p'
- UDID=000080200013044814D2002E
- PORT=12345
- RESOLUTION=400x600
- ./build/ios_minicap --udid 000080200013044814D2002E --port 12345 --resolution 400x600
EnableDALDevices
2019-05-08 11:23:25.923 ios_minicap[13089:331505] Available devices:
2019-05-08 11:23:25.924 ios_minicap[13089:331505] 00008020-0013044814D2002E
2019-05-08 11:23:25.924 ios_minicap[13089:331505] CC28151RLUMG1HNBW
2019-05-08 11:23:25.924 ios_minicap[13089:331505] device with udid '000080200013044814D2002E' not found
Environment(version of libraries, mac OS, iOS, etc)
iphoneXR,ios12.1
GYingchao commented
I have the same problem, did you resolve it? @sherry1993
sherry1993 commented
I modify the UDID in the run.sh.
#UDID=$(system_profiler SPUSBDataType | sed -n -E -e '/(iPhone|iPad)/,/Serial/s/ *Serial Number: *(.+)/\1/p')
UDID=XXXXX(your iPhone UDID).
… 在 2019年7月9日,下午2:37,Richard ***@***.***> 写道:
I have the same problem, did you resolve it? @sherry1993 <https://github.com/sherry1993>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#53?email_source=notifications&email_token=AEJ33RVXUDPES7WYI4AJQTDP6QW3JA5CNFSM4HLOB762YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZPIDCI#issuecomment-509510025>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AEJ33RQFQNBFPR46FQYXCGDP6QW3JANCNFSM4HLOB76Q>.
GYingchao commented
@sherry1993 Thank you! I also noticed the current run.sh failed to include the '-' in the middle of my udid.
zy308718320 commented
NSString *udidCpy = udid.mutableCopy;
NSString *strInsert = @"-";
NSRange range = NSMakeRange(8, 0);
NSString * uid = [udidCpy stringByReplacingCharactersInRange:range withString:strInsert];
NSLog(@"uid = %@",uid);
self.mDevice = [AVCaptureDevice deviceWithUniqueID: uid];