From 0eeb8657b4c2e303ab3e51a93e2b4cb179302665 Mon Sep 17 00:00:00 2001 From: Ilia Sidorenko Date: Sun, 12 Jan 2025 20:26:20 -0500 Subject: [PATCH] suppress master specs repo warning --- packages/react-native/scripts/react_native_pods.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-native/scripts/react_native_pods.rb b/packages/react-native/scripts/react_native_pods.rb index 4d313dcc48f782..4115944b2e9ce2 100644 --- a/packages/react-native/scripts/react_native_pods.rb +++ b/packages/react-native/scripts/react_native_pods.rb @@ -41,9 +41,9 @@ def min_supported_versions # This function prepares the project for React Native, before processing # all the target exposed by the framework. def prepare_react_native_project! - # Temporary solution to suppress duplicated GUID error. + # Temporary solution to suppress duplicated GUID error & master specs repo warning. # Can be removed once we move to generate files outside pod install. - install! 'cocoapods', :deterministic_uuids => false + install! 'cocoapods', :deterministic_uuids => false, :warn_for_unused_master_specs_repo => false ReactNativePodsUtils.create_xcode_env_if_missing end