-
Notifications
You must be signed in to change notification settings - Fork 310
deps: Sync ios/Podfile.lock with recent dependency upgrades #92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
These changes get made automatically for me when I build/run the iOS app, which I believe is when `pod install` gets run. It looks like a symptom of `pod install` not being done in 861a929 (in the case of `path_provider_foundation`) and in 99dd6a7 (in the cases of `device_info_plus` and `share_plus`).
Huh, weird. It's not as simple as this:
because when I run I wonder if this is CocoaPods's broken caching showing up again — perhaps I have an old version of some of these lying around in my cache, and you downloaded them fresh and got a newer version. (Or in some way vice versa?) |
And indeed when I check out this PR branch on my Mac and run |
OK, I think we've cleared that up. Sorry for the delayed debugging. The resolution is that So in the end it's pretty simple: the discrepancy was a symptom of |
It looks like there's a merge conflict, and there's also now the related #143. Would you rebase this, and combine it with #143 and any other commits to produce a branch that updates all these generated files as needed? Then hopefully I can reproduce the same result on my machine, and all will be clear. |
These changes happen in my environment when I run `pod install`, which I've just done for this commit. Greg's and my Podfile.lock were disagreeing about these checksums. Discussion and diagnosis: zulip#92 (comment)
Sure: #148 |
These changes happen in my environment when I run `pod install`, which I've just done for this commit. Greg's and my Podfile.lock were disagreeing about these checksums. It turns out they agree once one runs `flutter run` (for an iOS device), rather than just `pod install`. Discussion and diagnosis: zulip#92 (comment) [greg: added mention of `flutter run`]
Closing, as #148 was merged, superseding this. |
These changes get made automatically for me when I build/run the iOS app, which I believe is when
pod install
gets run.It looks like a symptom of
pod install
not being done in 861a929 (in the case ofpath_provider_foundation
) and in 99dd6a7 (in the cases ofdevice_info_plus
andshare_plus
).