Skip to content

Commit d3d658e

Browse files
committed
chore: ios encrypt 부분까지 성공
1 parent 9659f12 commit d3d658e

File tree

7 files changed

+1717
-16
lines changed

7 files changed

+1717
-16
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,13 @@ android/keystores/debug.keystore
6969
!.yarn/versions
7070

7171
# Expo
72-
.expo/
72+
.expo/*
7373

7474
# Turborepo
7575
.turbo/
7676

7777
# generated by bob
7878
lib/
79+
/example/ios/CryptoRsaExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
80+
/example/ios/CryptoRsaExample.xcworkspace/contents.xcworkspacedata
81+
/example/ios/.xcode.env.local

example/ios/CryptoRsaExample.xcodeproj/project.pbxproj

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = CryptoRsaExample/Images.xcassets; sourceTree = "<group>"; };
3737
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = CryptoRsaExample/Info.plist; sourceTree = "<group>"; };
3838
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = CryptoRsaExample/main.m; sourceTree = "<group>"; };
39-
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = CryptoRsaExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
39+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = CryptoRsaExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
4040
19F6CBCC0A4E27FBF8BF4A61 /* libPods-CryptoRsaExample-CryptoRsaExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-CryptoRsaExample-CryptoRsaExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
4141
3B4392A12AC88292D35C810B /* Pods-CryptoRsaExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CryptoRsaExample.debug.xcconfig"; path = "Target Support Files/Pods-CryptoRsaExample/Pods-CryptoRsaExample.debug.xcconfig"; sourceTree = "<group>"; };
4242
5709B34CF0A7D63546082F79 /* Pods-CryptoRsaExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CryptoRsaExample.release.xcconfig"; path = "Target Support Files/Pods-CryptoRsaExample/Pods-CryptoRsaExample.release.xcconfig"; sourceTree = "<group>"; };
@@ -517,6 +517,7 @@
517517
isa = XCBuildConfiguration;
518518
buildSettings = {
519519
ALWAYS_SEARCH_USER_PATHS = NO;
520+
CC = "";
520521
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
521522
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
522523
CLANG_CXX_LIBRARY = "libc++";
@@ -544,6 +545,7 @@
544545
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
545546
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
546547
COPY_PHASE_STRIP = NO;
548+
CXX = "";
547549
ENABLE_STRICT_OBJC_MSGSEND = YES;
548550
ENABLE_TESTABILITY = YES;
549551
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
@@ -563,6 +565,8 @@
563565
GCC_WARN_UNUSED_FUNCTION = YES;
564566
GCC_WARN_UNUSED_VARIABLE = YES;
565567
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
568+
LD = "";
569+
LDPLUSPLUS = "";
566570
LD_RUNPATH_SEARCH_PATHS = (
567571
/usr/lib/swift,
568572
"$(inherited)",
@@ -582,14 +586,21 @@
582586
"-DFOLLY_CFG_NO_COROUTINES=1",
583587
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
584588
);
589+
OTHER_LDFLAGS = (
590+
"$(inherited)",
591+
" ",
592+
);
593+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
585594
SDKROOT = iphoneos;
595+
USE_HERMES = true;
586596
};
587597
name = Debug;
588598
};
589599
83CBBA211A601CBA00E9B192 /* Release */ = {
590600
isa = XCBuildConfiguration;
591601
buildSettings = {
592602
ALWAYS_SEARCH_USER_PATHS = NO;
603+
CC = "";
593604
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
594605
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
595606
CLANG_CXX_LIBRARY = "libc++";
@@ -617,6 +628,7 @@
617628
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
618629
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
619630
COPY_PHASE_STRIP = YES;
631+
CXX = "";
620632
ENABLE_NS_ASSERTIONS = NO;
621633
ENABLE_STRICT_OBJC_MSGSEND = YES;
622634
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
@@ -629,6 +641,8 @@
629641
GCC_WARN_UNUSED_FUNCTION = YES;
630642
GCC_WARN_UNUSED_VARIABLE = YES;
631643
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
644+
LD = "";
645+
LDPLUSPLUS = "";
632646
LD_RUNPATH_SEARCH_PATHS = (
633647
/usr/lib/swift,
634648
"$(inherited)",
@@ -647,7 +661,13 @@
647661
"-DFOLLY_CFG_NO_COROUTINES=1",
648662
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
649663
);
664+
OTHER_LDFLAGS = (
665+
"$(inherited)",
666+
" ",
667+
);
668+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
650669
SDKROOT = iphoneos;
670+
USE_HERMES = true;
651671
VALIDATE_PRODUCT = YES;
652672
};
653673
name = Release;

0 commit comments

Comments
 (0)