From 2f467bae788511603463f1f7951b82ee22ed55c9 Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Tue, 22 Oct 2024 13:46:12 -0700 Subject: [PATCH] Fix macos xcprivacy manifest copy location (flutter/engine#56010) Cherry-pick the beta branch privacy location fix https://github.com/flutter/engine/pull/55938 back to master so this doesn't regress in the next beta. This is for https://github.com/flutter/flutter/issues/157016 on master. Can be merged once the framework test https://github.com/flutter/flutter/pull/157318 merges. [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style --- engine/src/flutter/shell/platform/darwin/macos/BUILD.gn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/src/flutter/shell/platform/darwin/macos/BUILD.gn b/engine/src/flutter/shell/platform/darwin/macos/BUILD.gn index 1224e15e02..3ce4bfc1f0 100644 --- a/engine/src/flutter/shell/platform/darwin/macos/BUILD.gn +++ b/engine/src/flutter/shell/platform/darwin/macos/BUILD.gn @@ -253,7 +253,8 @@ copy("copy_framework_module_map") { copy("copy_framework_privacy_manifest") { visibility = [ ":*" ] sources = [ "framework/PrivacyInfo.xcprivacy" ] - outputs = [ "$_flutter_framework_dir/PrivacyInfo.xcprivacy" ] + outputs = + [ "$_flutter_framework_dir/Versions/A/Resources/PrivacyInfo.xcprivacy" ] } action("copy_framework_headers") {