You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The group property in this case refers to the build phase. Since localized resources are always added to the 'Resources' build phase, setting that when the variant group is being created should fix this issue.
The text was updated successfully, but these errors were encountered:
Adding localization variant groups always adds groups with comment "undefined". For example, I end up with a
PBXBuildFile
section entry like this:Looks like the cause of this is pbxProject.addLocalizationVariantGroup: line 1864
Here, the variant group object is created without a group. This object is then passed in to
this.addToPbxBuildFileSection(localizationVariantGroup)
. This then passes the group intopbxBuildFileComment(file)
, which in turn callslongComment(file)
, which sets the comment for this entry.longComment
returnsf("%s in %s", file.basename, file.group)
as file comment. Thus, not setting the group property when the variant group is created results in all variant groups being created with this method havingundefined
comment.The group property in this case refers to the build phase. Since localized resources are always added to the 'Resources' build phase, setting that when the variant group is being created should fix this issue.
The text was updated successfully, but these errors were encountered: