Skip to content

Commit 47133e2

Browse files
authored
Update Podfile to fix archive (#35)
1 parent 6ce8c70 commit 47133e2

File tree

3 files changed

+70
-62
lines changed

3 files changed

+70
-62
lines changed

sample/ios/Podfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,14 @@ target 'ReactNative' do
6262
:mac_catalyst_enabled => false
6363
)
6464
__apply_Xcode_12_5_M1_post_install_workaround(installer)
65+
66+
# WORKAROUND
67+
# This fixes issues with the 'React-Core-AccessibilityResources' dependency when archiving the sample app in XCode:
68+
installer.pods_project.targets.each do |target|
69+
if target.name == "React-Core-AccessibilityResources"
70+
target.remove_from_project
71+
end
72+
end
6573
end
6674
end
6775

sample/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,6 +682,6 @@ SPEC CHECKSUMS:
682682
SwiftLint: c1de071d9d08c8aba837545f6254315bc900e211
683683
Yoga: b76f1acfda8212aa16b7e26bcce3983230c82603
684684

685-
PODFILE CHECKSUM: d1459fa6022f1a476e673f0b68fc07c26f0058ed
685+
PODFILE CHECKSUM: 4ffd968bdaf7e2f60158b7f23d95cb764cee0100
686686

687687
COCOAPODS: 1.14.3

0 commit comments

Comments
 (0)