From f595a4e681e75aaf737b6582f69855d76a1f33dd Mon Sep 17 00:00:00 2001 From: Dmitry Rykun Date: Tue, 25 Jan 2022 05:05:55 -0800 Subject: [PATCH] Duplicate Xcodeproj UUIDs in iOS app template Podfile fixed Summary: Disabled deterministic UUIDs in the Podfile. Changelog: [iOS][Fixed] - Fixed duplicated UUIDs problem during pod install phase. Reviewed By: sota000 Differential Revision: D33741572 fbshipit-source-id: 65cdd8a0ae34200e36e5a68849f5d3537c39dda2 --- template/ios/Podfile | 1 + 1 file changed, 1 insertion(+) diff --git a/template/ios/Podfile b/template/ios/Podfile index 403f9313294..54920362cc3 100644 --- a/template/ios/Podfile +++ b/template/ios/Podfile @@ -2,6 +2,7 @@ require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' platform :ios, '11.0' +install! 'cocoapods', :deterministic_uuids => false target 'HelloWorld' do config = use_native_modules!