From aa7a0bc6a6885fe3b862ce532b5b0354b86dc4d2 Mon Sep 17 00:00:00 2001 From: Phillip Pan Date: Wed, 17 Apr 2024 03:02:18 -0700 Subject: [PATCH] fix broken link in privacy manifest template message (#44128) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/44128 Changelog: [Internal] idk what happened but this link got abbreviated when i copypastad it, fixing it here Reviewed By: javache Differential Revision: D56228228 fbshipit-source-id: 35c5c9fb44e82083773302618474c1e3bbc71712 --- packages/react-native/scripts/cocoapods/utils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/scripts/cocoapods/utils.rb b/packages/react-native/scripts/cocoapods/utils.rb index a41b2997888..d7dc75c3a2e 100644 --- a/packages/react-native/scripts/cocoapods/utils.rb +++ b/packages/react-native/scripts/cocoapods/utils.rb @@ -625,7 +625,7 @@ class ReactNativePodsUtils } path = File.join(user_project.path.parent, "PrivacyInfo.xcprivacy") Xcodeproj::Plist.write_to_path(privacy_manifest, path) - Pod::UI.puts "Your app does not have a privacy manifest! A template has been generated containing Required Reasons API usage in the core React Native library. Please add the PrivacyInfo.xcprivacy file to your project and complete data use, tracking and any additional required reasons your app is using according to Apple's guidance: https://developer.apple.com/.../privacy_manifest_files. Then, you will need to manually add this file to your project in Xcode.".red + Pod::UI.puts "Your app does not have a privacy manifest! A template has been generated containing Required Reasons API usage in the core React Native library. Please add the PrivacyInfo.xcprivacy file to your project and complete data use, tracking and any additional required reasons your app is using according to Apple's guidance: https://developer.apple.com/documentation/bundleresources/privacy_manifest_files. Then, you will need to manually add this file to your project in Xcode.".red end end