-
Notifications
You must be signed in to change notification settings - Fork 28.9k
Closed
Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projectc: proposalA detailed proposal for a change to FlutterA detailed proposal for a change to Flutterplatform-macBuilding on or for macOS specificallyBuilding on or for macOS specificallyteam-macosOwned by the macOS platform teamOwned by the macOS platform teamtoolAffects the "flutter" command-line tool. See also t: labels.Affects the "flutter" command-line tool. See also t: labels.
Description
#76958 reported an iOS App Store validation error because of an errant Runner.app/Frameworks/.last_build_id
file in the archive bundle. That file is generated by the assemble build system to track when targets can be skipped. That particular issue will be fixed with #77007 but it would be nice to support the bundle directories as assemble output directories.
- Validate making
.last_build_id
a hidden file avoids validation issues. - If so, make
.last_build_id
hidden when written by setting thecom.apple.FinderInfo
extended attribute to 32. Thecom.apple.FinderInfo
attribute requires a 32-byte block, so it looks like:
xattr -wx com.apple.FinderInfo 2020202020202020401000000000000000000000000000000000000000000000 .last_build_id
See man getattrlist
ATTR_CMN_FNDRINFO
for info.
Metadata
Metadata
Assignees
Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projectc: proposalA detailed proposal for a change to FlutterA detailed proposal for a change to Flutterplatform-macBuilding on or for macOS specificallyBuilding on or for macOS specificallyteam-macosOwned by the macOS platform teamOwned by the macOS platform teamtoolAffects the "flutter" command-line tool. See also t: labels.Affects the "flutter" command-line tool. See also t: labels.