Skip to content

Commit 2f467ba

Browse files
authored
Fix macos xcprivacy manifest copy location (flutter/engine#56010)
Cherry-pick the beta branch privacy location fix flutter/engine#55938 back to master so this doesn't regress in the next beta. This is for flutter#157016 on master. Can be merged once the framework test flutter#157318 merges. [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
1 parent c5ad234 commit 2f467ba

File tree

1 file changed

+2
-1
lines changed
  • engine/src/flutter/shell/platform/darwin/macos

1 file changed

+2
-1
lines changed

engine/src/flutter/shell/platform/darwin/macos/BUILD.gn

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,8 @@ copy("copy_framework_module_map") {
253253
copy("copy_framework_privacy_manifest") {
254254
visibility = [ ":*" ]
255255
sources = [ "framework/PrivacyInfo.xcprivacy" ]
256-
outputs = [ "$_flutter_framework_dir/PrivacyInfo.xcprivacy" ]
256+
outputs =
257+
[ "$_flutter_framework_dir/Versions/A/Resources/PrivacyInfo.xcprivacy" ]
257258
}
258259

259260
action("copy_framework_headers") {

0 commit comments

Comments
 (0)