Fix App.framework path in Podfile#63412
Conversation
|
It looks like this pull request may not have tests. Please make sure to add tests before merging. If you need an exemption to this rule, contact Hixie on the #hackers channel in Chat. Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing. |
1 similar comment
|
It looks like this pull request may not have tests. Please make sure to add tests before merging. If you need an exemption to this rule, contact Hixie on the #hackers channel in Chat. Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing. |
christopherfujino
left a comment
There was a problem hiding this comment.
I'll LGTM anything with less ruby
|
I don't think this test is complete. |
|
LGTM. Thanks for adding tests |
|
I was wrong, we still need the fake App.framework. I forgot about the Also, I added a |
|
LGTM and works on my machine |
* Fix SliverList scrollOffsetCorrection 0 case (#62615) * Case insensitive check flavor names against Xcode schemes (#61140) * Address misc time picker design issues (#62803) * Update to the latest localizations (#63026) * Removed the inputFormatters from the text input fields used by the Date Pickers (#63461) * Fix App.framework path in Podfile (#63412) * Update engine hash to 1.20.2 Co-authored-by: Kate Lovett <[email protected]> Co-authored-by: Jenn Magder <[email protected]> Co-authored-by: Rami <[email protected]> Co-authored-by: Shi-Hao Hong <[email protected]> Co-authored-by: Darren Austin <[email protected]>
* Update engine hash to 1.21.0-9.1.pre * Removed the inputFormatters from the text input fields used by the Date Pickers (#63461) * Fix App.framework path in Podfile (#63412) Co-authored-by: Darren Austin <[email protected]> Co-authored-by: Jenn Magder <[email protected]>
Description
There was a bug with the path logic in creating the Debug fake
static const int Moo = 88;App.framework. Fix the path.Related Issues
Fixes #63176
Tests
Add a check to make sure the App.framework is really being embedded in the host app.
Added a
flutter cleanandflutter pub getto the integration test. Before, it was using the App.framework from a previous step building it from the module, which doesn't prove it can be generated from the host app without runningflutter buildin the module first.Checklist
///).flutter analyze --flutter-repo) does not report any problems on my PR.Breaking Change