EarlGrey icon indicating copy to clipboard operation
EarlGrey copied to clipboard

Xcode 13 Support

Open abjerstedt opened this issue 3 years ago • 5 comments

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)?

abjerstedt avatar Sep 28 '21 20:09 abjerstedt

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?

Killectro avatar Oct 26 '21 16:10 Killectro

EarlGrey 2.0 already has support for Xcode 13. Is there a specific issue that is blocking you?

tirodkar avatar Oct 26 '21 17:10 tirodkar

Possibly similar issue: #1647

whoyawn avatar Nov 02 '21 17:11 whoyawn

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 avatar Jan 24 '22 14:01 jazz-mobility

@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

douglasmkim avatar Feb 01 '22 15:02 douglasmkim