Replies: 1 comment
-
Heya! Thanks @gutley, I opened a PR to fix that. Here's the issue #12989 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For some reason these 5 localisations of the WidgetKitIntents generate warnings for both the WidgetKitExtension build and the main Client Build
Skipping duplicate build file in Compile Sources build phase: /Users/me/git/moz/firefox-ios/WidgetKit/fi.lproj/WidgetIntents.strings
Skipping duplicate build file in Compile Sources build phase: /Users/me/git/moz/firefox-ios/WidgetKit/si.lproj/WidgetIntents.strings
Skipping duplicate build file in Compile Sources build phase: /Users/me/git/moz/firefox-ios/WidgetKit/hi-IN.lproj/WidgetIntents.strings
Skipping duplicate build file in Compile Sources build phase: /Users/me/git/moz/firefox-ios/WidgetKit/ast.lproj/WidgetIntents.strings
Skipping duplicate build file in Compile Sources build phase: /Users/me/git/moz/firefox-ios/WidgetKit/te.lproj/WidgetIntents.strings
I think the main project.pbxproj has become muddled. If you look at the raw source of that file at this section:
You will see that entries for each of those 5 localisations appear twice (Pointed to by my chevrons <<<<<<<<<<<<<<)
Since its the bottom 5 files that are duplicated, this looks like an artefact from a merge where maybe conflicts were not resolved correctly. On my fork, I often have to be really careful when merging the project file from your repo to make sure things aren't left in a buildable but flawed state (as my fork has additional files and settings in there.
What I don't know is which of those duplicates is the correct one.
Beta Was this translation helpful? Give feedback.
All reactions