-
Notifications
You must be signed in to change notification settings - Fork 61
Description
I had to do a few extra steps to get this project to almost build.
FIRST, add the package dependency, THEN do the pod setup. (learning curve)
$ pod repo update
$ pod install (fails)
$ pod update SwiftCBOR (works)
in the workspace, the podfiles look good (they were red until I figured out the above steps)
Then when I build in xcode v13.2.1, I get 2 errors
/Users/mike/work/xxx/IOS-nRF-Connect-Device-Manager/Example/Example/View Controllers/Manager/FirmwareUploadViewController.swift:36:48: Cannot convert value of type 'Data' to expected argument type '[ImageManager.Image]' (aka 'Array<(image: Int, data: Data)>')
/Users/mike/work/xxx/IOS-nRF-Connect-Device-Manager/Example/Example/View Controllers/Manager/FirmwareUploadViewController.swift:36:32: Incorrect argument label in call (have 'data:delegate:', expected 'images:delegate:')
It's suggesting to replace 'data' with 'images' which also didn't work.