2.2.0
Auto scan for project files
Add the automatic scan feature to the codesigndoc.
The tool will check the root directory for the project files (e.g: .xcodeproj or .xcworkspace).
If it could not find any, then it should rollback to the current 'drag-and-drop' solution.
UI Target support
For iOS Real Device Testing we need to generate an .xcterstrun file which was generated for generic/real device.
For this we need a development provisioning profile for the UITest target too.
Add a new scan option: xcodeuitests ./codesigndoc scan xcodeuitests
NOTE
The scanner search for valid schemes for the provided iOS project / workspace.
The scheme is valid if:
- It has not skipped test target for test run:
- There is a UITest target in the not skipped ones :
Troubleshoot
If you run the ./codesigndoc scan xcodeuitests
and you can't find your desired scheme in the list
-
Make sure your scheme is valid for UITest run (the NOTE above)
-
Refresh your project settings:
- Select the
Generic iOS Device
target for the scheme in Xcode. - Clean your project
⌘ Cmd + ↑ Shift + K
- Run a build-for-testing
⌘ Cmd + ↑ Shift + U
- Select the
And try the codesigndoc
again.