File tree Expand file tree Collapse file tree 7 files changed +1242
-545
lines changed
HealthConnectExample.xcodeproj Expand file tree Collapse file tree 7 files changed +1242
-545
lines changed Original file line number Diff line number Diff line change 534534 buildSettings = {
535535 ALWAYS_SEARCH_USER_PATHS = NO;
536536 CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
537- CLANG_CXX_LANGUAGE_STANDARD = "c++17 ";
537+ CLANG_CXX_LANGUAGE_STANDARD = "c++20 ";
538538 CLANG_CXX_LIBRARY = "libc++";
539539 CLANG_ENABLE_MODULES = YES;
540540 CLANG_ENABLE_OBJC_ARC = YES;
590590 );
591591 MTL_ENABLE_DEBUG_INFO = YES;
592592 ONLY_ACTIVE_ARCH = YES;
593+ OTHER_CFLAGS = "$(inherited)";
593594 OTHER_CPLUSPLUSFLAGS = (
594595 "$(OTHER_CFLAGS)",
595596 "-DFOLLY_NO_CONFIG",
596597 "-DFOLLY_MOBILE=1",
597598 "-DFOLLY_USE_LIBCPP=1",
598599 );
600+ OTHER_LDFLAGS = (
601+ "$(inherited)",
602+ " ",
603+ );
599604 REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
600605 SDKROOT = iphoneos;
606+ USE_HERMES = true;
601607 };
602608 name = Debug;
603609 };
606612 buildSettings = {
607613 ALWAYS_SEARCH_USER_PATHS = NO;
608614 CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
609- CLANG_CXX_LANGUAGE_STANDARD = "c++17 ";
615+ CLANG_CXX_LANGUAGE_STANDARD = "c++20 ";
610616 CLANG_CXX_LIBRARY = "libc++";
611617 CLANG_ENABLE_MODULES = YES;
612618 CLANG_ENABLE_OBJC_ARC = YES;
654660 "\"$(inherited)\"",
655661 );
656662 MTL_ENABLE_DEBUG_INFO = NO;
663+ OTHER_CFLAGS = "$(inherited)";
657664 OTHER_CPLUSPLUSFLAGS = (
658665 "$(OTHER_CFLAGS)",
659666 "-DFOLLY_NO_CONFIG",
660667 "-DFOLLY_MOBILE=1",
661668 "-DFOLLY_USE_LIBCPP=1",
662669 );
670+ OTHER_LDFLAGS = (
671+ "$(inherited)",
672+ " ",
673+ );
663674 REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
664675 SDKROOT = iphoneos;
676+ USE_HERMES = true;
665677 VALIDATE_PRODUCT = YES;
666678 };
667679 name = Release;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ require_relative '../node_modules/@react-native-community/cli-platform-ios/nativ
44platform :ios , min_ios_version_supported
55prepare_react_native_project!
66
7- flipper_config = ENV [ 'NO_FLIPPER' ] == "1" ? FlipperConfiguration . disabled : FlipperConfiguration . enabled
7+ flipper_config = FlipperConfiguration . disabled
88
99linkage = ENV [ 'USE_FRAMEWORKS' ]
1010if linkage != nil
@@ -38,14 +38,4 @@ target 'HealthConnectExample' do
3838 inherit! :complete
3939 # Pods for testing
4040 end
41-
42- post_install do |installer |
43- react_native_post_install (
44- installer ,
45- # Set `mac_catalyst_enabled` to `true` in order to apply patches
46- # necessary for Mac Catalyst builds
47- :mac_catalyst_enabled => false
48- )
49- __apply_Xcode_12_5_M1_post_install_workaround ( installer )
50- end
51- end
41+ end
You can’t perform that action at this time.
0 commit comments