Eric Seidel
Eric Seidel
Interesting, Releaser splits into buildReleaseArtifacts and uploadReleaseArtifacts, where as patcher just has buildPatchArtifact and createPatchArtifacts
> didn't work either , still have this issue and cannot build apk using shorebird > > @eseidel @felangel We would love to help, but we will need to see...
Oh sorry, I see now that this is your issue, apologies, looking.
> > > didn't work either , still have this issue and cannot build apk using shorebird > > > @eseidel @felangel > > > > > > So just...
I agree, this would be nice and something we can look into after we support being able to build the app from within CI. No plans to do this before...
@rodrigoaguilaringka My recommendation would be check to make sure that `flutter build ipa` works without Shorebird. `shorebird release` mostly just calls `flutter build ipa` under the covers and it's good...
Regarding @avatarnguyen's original error: ``` [ +254 ms] Error (Xcode): [ +244 ms] lib/core/application/presentation/app.dart:22:8: Error: Error when reading '.dart_tool/flutter_gen/gen_l10n/phrase_localizations.dart': No such file or directory ``` My only guess is that...
Strange. I don't think we do anything different for `shorebird release ios` vs. `shorebird release android`. We *do* do different things for `shorebird patch ios` vs. `shorebird patch android`, but...
[3042](https://github.com/shorebirdtech/shorebird/issues/3042) suggests trying `shorebird release ipa -- --no-pub` on the theory that `flutter build ipa` run of pub get is causing the problem? We need to try and repro ourselves...
OK, we know why this is happening: https://github.com/shorebirdtech/shorebird/blob/dcd93ea5d3ded044d6de93cd487d4938e9b7b1f1/packages/shorebird_cli/lib/src/artifact_builder/artifact_builder.dart#L390 The fix would be for us to delete less in that step. However given that flutter_gen is deprecated, I'm going to hold...