EarlGrey
EarlGrey copied to clipboard
Xcode 13 Support
How far out is Xcode 13 support, and what exactly needs to be done to get there (maybe I can submit a PR to help)?
Bumping this up again, EG is currently blocking us from being able to migrate to Xcode 13. Is there any way the community can contribute to help drive this forward?
EarlGrey 2.0 already has support for Xcode 13. Is there a specific issue that is blocking you?
Possibly similar issue: #1647
Xcode 13 updates:
@tirodkar I have tried the earlgrey2 branch and it works fine with manual integration. However via cocoapods AppFramework.framework
is not being downloaded for EarlGreyApp
. I am not sure if zip downloading works correctly without pushing the latest pod specs.
Can you please release a new version for Cocoapods?
Here is my attempt with a new release but it doesn't download the zip file, any tips? https://github.com/jazz-mobility/EarlGrey/releases/tag/2.3.0
@jazz-mobility we had the same issue where the zip wasn't downloading. What we ended up doing was adding the podspec locally and pointing to it in our Podfile
pod 'EarlGreyApp', :podspec=> 'EarlGrey2/EarlGreyApp/EarlGreyApp.podspec'
We also added the .zip directly to our repo and pointed to it in the .podspec
s.source = { :http => 'file:' + __dir__ + '/EarlGreyApp.zip'} s.vendored_frameworks = "EarlGreyApp/AppFramework.framework"
Hopefully we'll get an official cocoapods release soon so we don't have to do all these workarounds