Carthage: no shared framework schemes for iOS platform (for my own framework)
The folks at Carthage helped me discover the issue - Xcode was not adding the schemes to git. Make sure that .xcodeproj/xcshareddata/xcschemes
is added and pushed to github.
In my case the issue was due the way I've included repo url in my cartfile. I changed it from:
github "https://...UICore.git" == 1.0.0
to
git "https://... UICore.git" "master"
Click on Manage Schemes, and then un-flag and re-flag the “Shared” voice near "YourFramework". Go to terminal and now :
carthage build --no-skip-current