@account-kit/react-native-signer 4.1.8-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (158) hide show
  1. package/.github/actions/setup/action.yml +27 -0
  2. package/.github/workflows/ci.yml +157 -0
  3. package/.npmrc +1 -0
  4. package/.turbo/turbo-prepare.log +21 -0
  5. package/.watchmanconfig +1 -0
  6. package/README.md +37 -0
  7. package/account-kit-react-native-signer.podspec +41 -0
  8. package/android/build.gradle +132 -0
  9. package/android/generated/java/com/accountkit/reactnativesigner/NativeTEKStamperSpec.java +55 -0
  10. package/android/generated/jni/CMakeLists.txt +36 -0
  11. package/android/generated/jni/NativeTEKStamperSpec-generated.cpp +56 -0
  12. package/android/generated/jni/NativeTEKStamperSpec.h +31 -0
  13. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/ComponentDescriptors.cpp +22 -0
  14. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/ComponentDescriptors.h +24 -0
  15. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/EventEmitters.cpp +16 -0
  16. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/EventEmitters.h +17 -0
  17. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/NativeTEKStamperSpecJSI-generated.cpp +54 -0
  18. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/NativeTEKStamperSpecJSI.h +150 -0
  19. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/Props.cpp +19 -0
  20. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/Props.h +18 -0
  21. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/ShadowNodes.cpp +17 -0
  22. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/ShadowNodes.h +23 -0
  23. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/States.cpp +16 -0
  24. package/android/generated/jni/react/renderer/components/NativeTEKStamperSpec/States.h +19 -0
  25. package/android/gradle.properties +5 -0
  26. package/android/src/main/AndroidManifest.xml +3 -0
  27. package/android/src/main/java/com/accountkit/reactnativesigner/KeyExtensions.kt +77 -0
  28. package/android/src/main/java/com/accountkit/reactnativesigner/NativeTEKStamperModule.kt +234 -0
  29. package/android/src/main/java/com/accountkit/reactnativesigner/ReactNativeSignerPackage.kt +33 -0
  30. package/android/src/main/java/com/accountkit/reactnativesigner/TEKManager.kt +88 -0
  31. package/babel.config.js +5 -0
  32. package/example/.bundle/config +2 -0
  33. package/example/.watchmanconfig +1 -0
  34. package/example/Gemfile +9 -0
  35. package/example/README.md +79 -0
  36. package/example/android/app/build.gradle +133 -0
  37. package/example/android/app/debug.keystore +0 -0
  38. package/example/android/app/proguard-rules.pro +10 -0
  39. package/example/android/app/src/debug/AndroidManifest.xml +9 -0
  40. package/example/android/app/src/main/AndroidManifest.xml +17 -0
  41. package/example/android/app/src/main/java/accountkit/reactnativesigner/example/MainActivity.kt +27 -0
  42. package/example/android/app/src/main/java/accountkit/reactnativesigner/example/MainApplication.kt +48 -0
  43. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  44. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  45. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  46. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  47. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  48. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  49. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  50. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  51. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  52. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  53. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  54. package/example/android/app/src/main/res/values/strings.xml +3 -0
  55. package/example/android/app/src/main/res/values/styles.xml +9 -0
  56. package/example/android/build.gradle +21 -0
  57. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  58. package/example/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  59. package/example/android/gradle.properties +41 -0
  60. package/example/android/gradlew +252 -0
  61. package/example/android/gradlew.bat +94 -0
  62. package/example/android/settings.gradle +6 -0
  63. package/example/app.json +4 -0
  64. package/example/babel.config.js +12 -0
  65. package/example/index.js +6 -0
  66. package/example/ios/.xcode.env +11 -0
  67. package/example/ios/File.swift +6 -0
  68. package/example/ios/Podfile +47 -0
  69. package/example/ios/ReactNativeSignerExample/AppDelegate.h +6 -0
  70. package/example/ios/ReactNativeSignerExample/AppDelegate.mm +31 -0
  71. package/example/ios/ReactNativeSignerExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  72. package/example/ios/ReactNativeSignerExample/Images.xcassets/Contents.json +6 -0
  73. package/example/ios/ReactNativeSignerExample/Info.plist +52 -0
  74. package/example/ios/ReactNativeSignerExample/LaunchScreen.storyboard +47 -0
  75. package/example/ios/ReactNativeSignerExample/PrivacyInfo.xcprivacy +37 -0
  76. package/example/ios/ReactNativeSignerExample/main.m +10 -0
  77. package/example/ios/ReactNativeSignerExample-Bridging-Header.h +3 -0
  78. package/example/ios/ReactNativeSignerExample.xcodeproj/project.pbxproj +690 -0
  79. package/example/ios/ReactNativeSignerExample.xcodeproj/xcshareddata/xcschemes/ReactNativeSignerExample.xcscheme +98 -0
  80. package/example/ios/ReactNativeSignerExampleTests/Info.plist +24 -0
  81. package/example/ios/ReactNativeSignerExampleTests/ReactNativeSignerExampleTests.m +66 -0
  82. package/example/jest.config.js +3 -0
  83. package/example/metro.config.js +22 -0
  84. package/example/package.json +56 -0
  85. package/example/react-native.config.js +15 -0
  86. package/example/redirect-server/index.ts +19 -0
  87. package/example/src/App.tsx +30 -0
  88. package/example/src/screens/Home.tsx +149 -0
  89. package/example/turbo.json +38 -0
  90. package/ios/ReactNativeSigner.h +12 -0
  91. package/ios/ReactNativeSigner.mm +21 -0
  92. package/ios/generated/NativeTEKStamperSpec/ComponentDescriptors.cpp +22 -0
  93. package/ios/generated/NativeTEKStamperSpec/ComponentDescriptors.h +24 -0
  94. package/ios/generated/NativeTEKStamperSpec/EventEmitters.cpp +16 -0
  95. package/ios/generated/NativeTEKStamperSpec/EventEmitters.h +17 -0
  96. package/ios/generated/NativeTEKStamperSpec/NativeTEKStamperSpec-generated.mm +67 -0
  97. package/ios/generated/NativeTEKStamperSpec/NativeTEKStamperSpec.h +68 -0
  98. package/ios/generated/NativeTEKStamperSpec/Props.cpp +19 -0
  99. package/ios/generated/NativeTEKStamperSpec/Props.h +18 -0
  100. package/ios/generated/NativeTEKStamperSpec/RCTComponentViewHelpers.h +18 -0
  101. package/ios/generated/NativeTEKStamperSpec/ShadowNodes.cpp +17 -0
  102. package/ios/generated/NativeTEKStamperSpec/ShadowNodes.h +23 -0
  103. package/ios/generated/NativeTEKStamperSpec/States.cpp +16 -0
  104. package/ios/generated/NativeTEKStamperSpec/States.h +19 -0
  105. package/ios/generated/NativeTEKStamperSpecJSI-generated.cpp +54 -0
  106. package/ios/generated/NativeTEKStamperSpecJSI.h +150 -0
  107. package/lib/commonjs/NativeTEKStamper.js +9 -0
  108. package/lib/commonjs/NativeTEKStamper.js.map +1 -0
  109. package/lib/commonjs/client.js +103 -0
  110. package/lib/commonjs/client.js.map +1 -0
  111. package/lib/commonjs/index.js +13 -0
  112. package/lib/commonjs/index.js.map +1 -0
  113. package/lib/commonjs/signer.js +39 -0
  114. package/lib/commonjs/signer.js.map +1 -0
  115. package/lib/commonjs/utils/mmkv-localstorage-polyfill.js +38 -0
  116. package/lib/commonjs/utils/mmkv-localstorage-polyfill.js.map +1 -0
  117. package/lib/module/NativeTEKStamper.js +5 -0
  118. package/lib/module/NativeTEKStamper.js.map +1 -0
  119. package/lib/module/client.js +96 -0
  120. package/lib/module/client.js.map +1 -0
  121. package/lib/module/index.js +5 -0
  122. package/lib/module/index.js.map +1 -0
  123. package/lib/module/signer.js +33 -0
  124. package/lib/module/signer.js.map +1 -0
  125. package/lib/module/utils/mmkv-localstorage-polyfill.js +38 -0
  126. package/lib/module/utils/mmkv-localstorage-polyfill.js.map +1 -0
  127. package/lib/typescript/commonjs/package.json +1 -0
  128. package/lib/typescript/commonjs/src/NativeTEKStamper.d.ts +34 -0
  129. package/lib/typescript/commonjs/src/NativeTEKStamper.d.ts.map +1 -0
  130. package/lib/typescript/commonjs/src/client.d.ts +107 -0
  131. package/lib/typescript/commonjs/src/client.d.ts.map +1 -0
  132. package/lib/typescript/commonjs/src/index.d.ts +2 -0
  133. package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
  134. package/lib/typescript/commonjs/src/signer.d.ts +185 -0
  135. package/lib/typescript/commonjs/src/signer.d.ts.map +1 -0
  136. package/lib/typescript/commonjs/src/utils/mmkv-localstorage-polyfill.d.ts +2 -0
  137. package/lib/typescript/commonjs/src/utils/mmkv-localstorage-polyfill.d.ts.map +1 -0
  138. package/lib/typescript/module/package.json +1 -0
  139. package/lib/typescript/module/src/NativeTEKStamper.d.ts +34 -0
  140. package/lib/typescript/module/src/NativeTEKStamper.d.ts.map +1 -0
  141. package/lib/typescript/module/src/client.d.ts +107 -0
  142. package/lib/typescript/module/src/client.d.ts.map +1 -0
  143. package/lib/typescript/module/src/index.d.ts +2 -0
  144. package/lib/typescript/module/src/index.d.ts.map +1 -0
  145. package/lib/typescript/module/src/signer.d.ts +185 -0
  146. package/lib/typescript/module/src/signer.d.ts.map +1 -0
  147. package/lib/typescript/module/src/utils/mmkv-localstorage-polyfill.d.ts +2 -0
  148. package/lib/typescript/module/src/utils/mmkv-localstorage-polyfill.d.ts.map +1 -0
  149. package/package.json +153 -0
  150. package/react-native.config.js +11 -0
  151. package/src/NativeTEKStamper.ts +42 -0
  152. package/src/client.ts +128 -0
  153. package/src/index.tsx +2 -0
  154. package/src/signer.ts +39 -0
  155. package/src/utils/mmkv-localstorage-polyfill.ts +41 -0
  156. package/tsconfig.build.json +4 -0
  157. package/tsconfig.json +30 -0
  158. package/turbo.json +9 -0
@@ -0,0 +1,690 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* ReactNativeSignerExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeSignerExampleTests.m */; };
11
+ 0C80B921A6F3F58F76C31292 /* libPods-ReactNativeSignerExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-ReactNativeSignerExample.a */; };
12
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
13
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15
+ 7699B88040F8A987B510C191 /* libPods-ReactNativeSignerExample-ReactNativeSignerExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-ReactNativeSignerExample-ReactNativeSignerExampleTests.a */; };
16
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
17
+ /* End PBXBuildFile section */
18
+
19
+ /* Begin PBXContainerItemProxy section */
20
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
21
+ isa = PBXContainerItemProxy;
22
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
23
+ proxyType = 1;
24
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
25
+ remoteInfo = ReactNativeSignerExample;
26
+ };
27
+ /* End PBXContainerItemProxy section */
28
+
29
+ /* Begin PBXFileReference section */
30
+ 00E356EE1AD99517003FC87E /* ReactNativeSignerExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactNativeSignerExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
31
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
32
+ 00E356F21AD99517003FC87E /* ReactNativeSignerExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactNativeSignerExampleTests.m; sourceTree = "<group>"; };
33
+ 13B07F961A680F5B00A75B9A /* ReactNativeSignerExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactNativeSignerExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
34
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ReactNativeSignerExample/AppDelegate.h; sourceTree = "<group>"; };
35
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = ReactNativeSignerExample/AppDelegate.mm; sourceTree = "<group>"; };
36
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReactNativeSignerExample/Images.xcassets; sourceTree = "<group>"; };
37
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReactNativeSignerExample/Info.plist; sourceTree = "<group>"; };
38
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ReactNativeSignerExample/main.m; sourceTree = "<group>"; };
39
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = ReactNativeSignerExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
40
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-ReactNativeSignerExample-ReactNativeSignerExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeSignerExample-ReactNativeSignerExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
41
+ 3B4392A12AC88292D35C810B /* Pods-ReactNativeSignerExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeSignerExample.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeSignerExample/Pods-ReactNativeSignerExample.debug.xcconfig"; sourceTree = "<group>"; };
42
+ 5709B34CF0A7D63546082F79 /* Pods-ReactNativeSignerExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeSignerExample.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeSignerExample/Pods-ReactNativeSignerExample.release.xcconfig"; sourceTree = "<group>"; };
43
+ 5B7EB9410499542E8C5724F5 /* Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.debug.xcconfig"; sourceTree = "<group>"; };
44
+ 5DCACB8F33CDC322A6C60F78 /* libPods-ReactNativeSignerExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeSignerExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
45
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ReactNativeSignerExample/LaunchScreen.storyboard; sourceTree = "<group>"; };
46
+ 89C6BE57DB24E9ADA2F236DE /* Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.release.xcconfig"; sourceTree = "<group>"; };
47
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
48
+ /* End PBXFileReference section */
49
+
50
+ /* Begin PBXFrameworksBuildPhase section */
51
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
52
+ isa = PBXFrameworksBuildPhase;
53
+ buildActionMask = 2147483647;
54
+ files = (
55
+ 7699B88040F8A987B510C191 /* libPods-ReactNativeSignerExample-ReactNativeSignerExampleTests.a in Frameworks */,
56
+ );
57
+ runOnlyForDeploymentPostprocessing = 0;
58
+ };
59
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
60
+ isa = PBXFrameworksBuildPhase;
61
+ buildActionMask = 2147483647;
62
+ files = (
63
+ 0C80B921A6F3F58F76C31292 /* libPods-ReactNativeSignerExample.a in Frameworks */,
64
+ );
65
+ runOnlyForDeploymentPostprocessing = 0;
66
+ };
67
+ /* End PBXFrameworksBuildPhase section */
68
+
69
+ /* Begin PBXGroup section */
70
+ 00E356EF1AD99517003FC87E /* ReactNativeSignerExampleTests */ = {
71
+ isa = PBXGroup;
72
+ children = (
73
+ 00E356F21AD99517003FC87E /* ReactNativeSignerExampleTests.m */,
74
+ 00E356F01AD99517003FC87E /* Supporting Files */,
75
+ );
76
+ path = ReactNativeSignerExampleTests;
77
+ sourceTree = "<group>";
78
+ };
79
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
80
+ isa = PBXGroup;
81
+ children = (
82
+ 00E356F11AD99517003FC87E /* Info.plist */,
83
+ );
84
+ name = "Supporting Files";
85
+ sourceTree = "<group>";
86
+ };
87
+ 13B07FAE1A68108700A75B9A /* ReactNativeSignerExample */ = {
88
+ isa = PBXGroup;
89
+ children = (
90
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
91
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
92
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
93
+ 13B07FB61A68108700A75B9A /* Info.plist */,
94
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
95
+ 13B07FB71A68108700A75B9A /* main.m */,
96
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
97
+ );
98
+ name = ReactNativeSignerExample;
99
+ sourceTree = "<group>";
100
+ };
101
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
102
+ isa = PBXGroup;
103
+ children = (
104
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
105
+ 5DCACB8F33CDC322A6C60F78 /* libPods-ReactNativeSignerExample.a */,
106
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-ReactNativeSignerExample-ReactNativeSignerExampleTests.a */,
107
+ );
108
+ name = Frameworks;
109
+ sourceTree = "<group>";
110
+ };
111
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
112
+ isa = PBXGroup;
113
+ children = (
114
+ );
115
+ name = Libraries;
116
+ sourceTree = "<group>";
117
+ };
118
+ 83CBB9F61A601CBA00E9B192 = {
119
+ isa = PBXGroup;
120
+ children = (
121
+ 13B07FAE1A68108700A75B9A /* ReactNativeSignerExample */,
122
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
123
+ 00E356EF1AD99517003FC87E /* ReactNativeSignerExampleTests */,
124
+ 83CBBA001A601CBA00E9B192 /* Products */,
125
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
126
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
127
+ );
128
+ indentWidth = 2;
129
+ sourceTree = "<group>";
130
+ tabWidth = 2;
131
+ usesTabs = 0;
132
+ };
133
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
134
+ isa = PBXGroup;
135
+ children = (
136
+ 13B07F961A680F5B00A75B9A /* ReactNativeSignerExample.app */,
137
+ 00E356EE1AD99517003FC87E /* ReactNativeSignerExampleTests.xctest */,
138
+ );
139
+ name = Products;
140
+ sourceTree = "<group>";
141
+ };
142
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
143
+ isa = PBXGroup;
144
+ children = (
145
+ 3B4392A12AC88292D35C810B /* Pods-ReactNativeSignerExample.debug.xcconfig */,
146
+ 5709B34CF0A7D63546082F79 /* Pods-ReactNativeSignerExample.release.xcconfig */,
147
+ 5B7EB9410499542E8C5724F5 /* Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.debug.xcconfig */,
148
+ 89C6BE57DB24E9ADA2F236DE /* Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.release.xcconfig */,
149
+ );
150
+ path = Pods;
151
+ sourceTree = "<group>";
152
+ };
153
+ /* End PBXGroup section */
154
+
155
+ /* Begin PBXNativeTarget section */
156
+ 00E356ED1AD99517003FC87E /* ReactNativeSignerExampleTests */ = {
157
+ isa = PBXNativeTarget;
158
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactNativeSignerExampleTests" */;
159
+ buildPhases = (
160
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
161
+ 00E356EA1AD99517003FC87E /* Sources */,
162
+ 00E356EB1AD99517003FC87E /* Frameworks */,
163
+ 00E356EC1AD99517003FC87E /* Resources */,
164
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
165
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
166
+ );
167
+ buildRules = (
168
+ );
169
+ dependencies = (
170
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
171
+ );
172
+ name = ReactNativeSignerExampleTests;
173
+ productName = ReactNativeSignerExampleTests;
174
+ productReference = 00E356EE1AD99517003FC87E /* ReactNativeSignerExampleTests.xctest */;
175
+ productType = "com.apple.product-type.bundle.unit-test";
176
+ };
177
+ 13B07F861A680F5B00A75B9A /* ReactNativeSignerExample */ = {
178
+ isa = PBXNativeTarget;
179
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNativeSignerExample" */;
180
+ buildPhases = (
181
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
182
+ 13B07F871A680F5B00A75B9A /* Sources */,
183
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
184
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
185
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
186
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
187
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
188
+ );
189
+ buildRules = (
190
+ );
191
+ dependencies = (
192
+ );
193
+ name = ReactNativeSignerExample;
194
+ productName = ReactNativeSignerExample;
195
+ productReference = 13B07F961A680F5B00A75B9A /* ReactNativeSignerExample.app */;
196
+ productType = "com.apple.product-type.application";
197
+ };
198
+ /* End PBXNativeTarget section */
199
+
200
+ /* Begin PBXProject section */
201
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
202
+ isa = PBXProject;
203
+ attributes = {
204
+ LastUpgradeCheck = 1210;
205
+ TargetAttributes = {
206
+ 00E356ED1AD99517003FC87E = {
207
+ CreatedOnToolsVersion = 6.2;
208
+ TestTargetID = 13B07F861A680F5B00A75B9A;
209
+ };
210
+ 13B07F861A680F5B00A75B9A = {
211
+ LastSwiftMigration = 1120;
212
+ };
213
+ };
214
+ };
215
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeSignerExample" */;
216
+ compatibilityVersion = "Xcode 12.0";
217
+ developmentRegion = en;
218
+ hasScannedForEncodings = 0;
219
+ knownRegions = (
220
+ en,
221
+ Base,
222
+ );
223
+ mainGroup = 83CBB9F61A601CBA00E9B192;
224
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
225
+ projectDirPath = "";
226
+ projectRoot = "";
227
+ targets = (
228
+ 13B07F861A680F5B00A75B9A /* ReactNativeSignerExample */,
229
+ 00E356ED1AD99517003FC87E /* ReactNativeSignerExampleTests */,
230
+ );
231
+ };
232
+ /* End PBXProject section */
233
+
234
+ /* Begin PBXResourcesBuildPhase section */
235
+ 00E356EC1AD99517003FC87E /* Resources */ = {
236
+ isa = PBXResourcesBuildPhase;
237
+ buildActionMask = 2147483647;
238
+ files = (
239
+ );
240
+ runOnlyForDeploymentPostprocessing = 0;
241
+ };
242
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
243
+ isa = PBXResourcesBuildPhase;
244
+ buildActionMask = 2147483647;
245
+ files = (
246
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
247
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
248
+ );
249
+ runOnlyForDeploymentPostprocessing = 0;
250
+ };
251
+ /* End PBXResourcesBuildPhase section */
252
+
253
+ /* Begin PBXShellScriptBuildPhase section */
254
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
255
+ isa = PBXShellScriptBuildPhase;
256
+ buildActionMask = 2147483647;
257
+ files = (
258
+ );
259
+ inputPaths = (
260
+ "$(SRCROOT)/.xcode.env.local",
261
+ "$(SRCROOT)/.xcode.env",
262
+ );
263
+ name = "Bundle React Native code and images";
264
+ outputPaths = (
265
+ );
266
+ runOnlyForDeploymentPostprocessing = 0;
267
+ shellPath = /bin/sh;
268
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
269
+ };
270
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
271
+ isa = PBXShellScriptBuildPhase;
272
+ buildActionMask = 2147483647;
273
+ files = (
274
+ );
275
+ inputFileListPaths = (
276
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample/Pods-ReactNativeSignerExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
277
+ );
278
+ name = "[CP] Embed Pods Frameworks";
279
+ outputFileListPaths = (
280
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample/Pods-ReactNativeSignerExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
281
+ );
282
+ runOnlyForDeploymentPostprocessing = 0;
283
+ shellPath = /bin/sh;
284
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample/Pods-ReactNativeSignerExample-frameworks.sh\"\n";
285
+ showEnvVarsInLog = 0;
286
+ };
287
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
288
+ isa = PBXShellScriptBuildPhase;
289
+ buildActionMask = 2147483647;
290
+ files = (
291
+ );
292
+ inputFileListPaths = (
293
+ );
294
+ inputPaths = (
295
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
296
+ "${PODS_ROOT}/Manifest.lock",
297
+ );
298
+ name = "[CP] Check Pods Manifest.lock";
299
+ outputFileListPaths = (
300
+ );
301
+ outputPaths = (
302
+ "$(DERIVED_FILE_DIR)/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests-checkManifestLockResult.txt",
303
+ );
304
+ runOnlyForDeploymentPostprocessing = 0;
305
+ shellPath = /bin/sh;
306
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
307
+ showEnvVarsInLog = 0;
308
+ };
309
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
310
+ isa = PBXShellScriptBuildPhase;
311
+ buildActionMask = 2147483647;
312
+ files = (
313
+ );
314
+ inputFileListPaths = (
315
+ );
316
+ inputPaths = (
317
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
318
+ "${PODS_ROOT}/Manifest.lock",
319
+ );
320
+ name = "[CP] Check Pods Manifest.lock";
321
+ outputFileListPaths = (
322
+ );
323
+ outputPaths = (
324
+ "$(DERIVED_FILE_DIR)/Pods-ReactNativeSignerExample-checkManifestLockResult.txt",
325
+ );
326
+ runOnlyForDeploymentPostprocessing = 0;
327
+ shellPath = /bin/sh;
328
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
329
+ showEnvVarsInLog = 0;
330
+ };
331
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
332
+ isa = PBXShellScriptBuildPhase;
333
+ buildActionMask = 2147483647;
334
+ files = (
335
+ );
336
+ inputFileListPaths = (
337
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
338
+ );
339
+ name = "[CP] Embed Pods Frameworks";
340
+ outputFileListPaths = (
341
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
342
+ );
343
+ runOnlyForDeploymentPostprocessing = 0;
344
+ shellPath = /bin/sh;
345
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests-frameworks.sh\"\n";
346
+ showEnvVarsInLog = 0;
347
+ };
348
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
349
+ isa = PBXShellScriptBuildPhase;
350
+ buildActionMask = 2147483647;
351
+ files = (
352
+ );
353
+ inputFileListPaths = (
354
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample/Pods-ReactNativeSignerExample-resources-${CONFIGURATION}-input-files.xcfilelist",
355
+ );
356
+ name = "[CP] Copy Pods Resources";
357
+ outputFileListPaths = (
358
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample/Pods-ReactNativeSignerExample-resources-${CONFIGURATION}-output-files.xcfilelist",
359
+ );
360
+ runOnlyForDeploymentPostprocessing = 0;
361
+ shellPath = /bin/sh;
362
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample/Pods-ReactNativeSignerExample-resources.sh\"\n";
363
+ showEnvVarsInLog = 0;
364
+ };
365
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
366
+ isa = PBXShellScriptBuildPhase;
367
+ buildActionMask = 2147483647;
368
+ files = (
369
+ );
370
+ inputFileListPaths = (
371
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
372
+ );
373
+ name = "[CP] Copy Pods Resources";
374
+ outputFileListPaths = (
375
+ "${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
376
+ );
377
+ runOnlyForDeploymentPostprocessing = 0;
378
+ shellPath = /bin/sh;
379
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests/Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests-resources.sh\"\n";
380
+ showEnvVarsInLog = 0;
381
+ };
382
+ /* End PBXShellScriptBuildPhase section */
383
+
384
+ /* Begin PBXSourcesBuildPhase section */
385
+ 00E356EA1AD99517003FC87E /* Sources */ = {
386
+ isa = PBXSourcesBuildPhase;
387
+ buildActionMask = 2147483647;
388
+ files = (
389
+ 00E356F31AD99517003FC87E /* ReactNativeSignerExampleTests.m in Sources */,
390
+ );
391
+ runOnlyForDeploymentPostprocessing = 0;
392
+ };
393
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
394
+ isa = PBXSourcesBuildPhase;
395
+ buildActionMask = 2147483647;
396
+ files = (
397
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
398
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
399
+ );
400
+ runOnlyForDeploymentPostprocessing = 0;
401
+ };
402
+ /* End PBXSourcesBuildPhase section */
403
+
404
+ /* Begin PBXTargetDependency section */
405
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
406
+ isa = PBXTargetDependency;
407
+ target = 13B07F861A680F5B00A75B9A /* ReactNativeSignerExample */;
408
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
409
+ };
410
+ /* End PBXTargetDependency section */
411
+
412
+ /* Begin XCBuildConfiguration section */
413
+ 00E356F61AD99517003FC87E /* Debug */ = {
414
+ isa = XCBuildConfiguration;
415
+ baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.debug.xcconfig */;
416
+ buildSettings = {
417
+ BUNDLE_LOADER = "$(TEST_HOST)";
418
+ GCC_PREPROCESSOR_DEFINITIONS = (
419
+ "DEBUG=1",
420
+ "$(inherited)",
421
+ );
422
+ INFOPLIST_FILE = ReactNativeSignerExampleTests/Info.plist;
423
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
424
+ LD_RUNPATH_SEARCH_PATHS = (
425
+ "$(inherited)",
426
+ "@executable_path/Frameworks",
427
+ "@loader_path/Frameworks",
428
+ );
429
+ OTHER_LDFLAGS = (
430
+ "-ObjC",
431
+ "-lc++",
432
+ "$(inherited)",
433
+ );
434
+ PRODUCT_BUNDLE_IDENTIFIER = "accountkit.reactnativesigner.example";
435
+ PRODUCT_NAME = "$(TARGET_NAME)";
436
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeSignerExample.app/ReactNativeSignerExample";
437
+ };
438
+ name = Debug;
439
+ };
440
+ 00E356F71AD99517003FC87E /* Release */ = {
441
+ isa = XCBuildConfiguration;
442
+ baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-ReactNativeSignerExample-ReactNativeSignerExampleTests.release.xcconfig */;
443
+ buildSettings = {
444
+ BUNDLE_LOADER = "$(TEST_HOST)";
445
+ COPY_PHASE_STRIP = NO;
446
+ INFOPLIST_FILE = ReactNativeSignerExampleTests/Info.plist;
447
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
448
+ LD_RUNPATH_SEARCH_PATHS = (
449
+ "$(inherited)",
450
+ "@executable_path/Frameworks",
451
+ "@loader_path/Frameworks",
452
+ );
453
+ OTHER_LDFLAGS = (
454
+ "-ObjC",
455
+ "-lc++",
456
+ "$(inherited)",
457
+ );
458
+ PRODUCT_BUNDLE_IDENTIFIER = "accountkit.reactnativesigner.example";
459
+ PRODUCT_NAME = "$(TARGET_NAME)";
460
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeSignerExample.app/ReactNativeSignerExample";
461
+ };
462
+ name = Release;
463
+ };
464
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
465
+ isa = XCBuildConfiguration;
466
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-ReactNativeSignerExample.debug.xcconfig */;
467
+ buildSettings = {
468
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
469
+ CLANG_ENABLE_MODULES = YES;
470
+ CURRENT_PROJECT_VERSION = 1;
471
+ ENABLE_BITCODE = NO;
472
+ INFOPLIST_FILE = ReactNativeSignerExample/Info.plist;
473
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
474
+ LD_RUNPATH_SEARCH_PATHS = (
475
+ "$(inherited)",
476
+ "@executable_path/Frameworks",
477
+ );
478
+ MARKETING_VERSION = 1.0;
479
+ OTHER_LDFLAGS = (
480
+ "$(inherited)",
481
+ "-ObjC",
482
+ "-lc++",
483
+ );
484
+ PRODUCT_BUNDLE_IDENTIFIER = "accountkit.reactnativesigner.example";
485
+ PRODUCT_NAME = ReactNativeSignerExample;
486
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
487
+ SWIFT_VERSION = 5.0;
488
+ VERSIONING_SYSTEM = "apple-generic";
489
+ };
490
+ name = Debug;
491
+ };
492
+ 13B07F951A680F5B00A75B9A /* Release */ = {
493
+ isa = XCBuildConfiguration;
494
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-ReactNativeSignerExample.release.xcconfig */;
495
+ buildSettings = {
496
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
497
+ CLANG_ENABLE_MODULES = YES;
498
+ CURRENT_PROJECT_VERSION = 1;
499
+ INFOPLIST_FILE = ReactNativeSignerExample/Info.plist;
500
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
501
+ LD_RUNPATH_SEARCH_PATHS = (
502
+ "$(inherited)",
503
+ "@executable_path/Frameworks",
504
+ );
505
+ MARKETING_VERSION = 1.0;
506
+ OTHER_LDFLAGS = (
507
+ "$(inherited)",
508
+ "-ObjC",
509
+ "-lc++",
510
+ );
511
+ PRODUCT_BUNDLE_IDENTIFIER = "accountkit.reactnativesigner.example";
512
+ PRODUCT_NAME = ReactNativeSignerExample;
513
+ SWIFT_VERSION = 5.0;
514
+ VERSIONING_SYSTEM = "apple-generic";
515
+ };
516
+ name = Release;
517
+ };
518
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
519
+ isa = XCBuildConfiguration;
520
+ buildSettings = {
521
+ ALWAYS_SEARCH_USER_PATHS = NO;
522
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
523
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
524
+ CLANG_CXX_LIBRARY = "libc++";
525
+ CLANG_ENABLE_MODULES = YES;
526
+ CLANG_ENABLE_OBJC_ARC = YES;
527
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
528
+ CLANG_WARN_BOOL_CONVERSION = YES;
529
+ CLANG_WARN_COMMA = YES;
530
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
531
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
532
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
533
+ CLANG_WARN_EMPTY_BODY = YES;
534
+ CLANG_WARN_ENUM_CONVERSION = YES;
535
+ CLANG_WARN_INFINITE_RECURSION = YES;
536
+ CLANG_WARN_INT_CONVERSION = YES;
537
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
538
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
539
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
540
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
541
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
542
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
543
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
544
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
545
+ CLANG_WARN_UNREACHABLE_CODE = YES;
546
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
547
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
548
+ COPY_PHASE_STRIP = NO;
549
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
550
+ ENABLE_TESTABILITY = YES;
551
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
552
+ GCC_C_LANGUAGE_STANDARD = gnu99;
553
+ GCC_DYNAMIC_NO_PIC = NO;
554
+ GCC_NO_COMMON_BLOCKS = YES;
555
+ GCC_OPTIMIZATION_LEVEL = 0;
556
+ GCC_PREPROCESSOR_DEFINITIONS = (
557
+ "DEBUG=1",
558
+ "$(inherited)",
559
+ );
560
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
561
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
562
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
563
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
564
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
565
+ GCC_WARN_UNUSED_FUNCTION = YES;
566
+ GCC_WARN_UNUSED_VARIABLE = YES;
567
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
568
+ LD_RUNPATH_SEARCH_PATHS = (
569
+ /usr/lib/swift,
570
+ "$(inherited)",
571
+ );
572
+ LIBRARY_SEARCH_PATHS = (
573
+ "\"$(SDKROOT)/usr/lib/swift\"",
574
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
575
+ "\"$(inherited)\"",
576
+ );
577
+ MTL_ENABLE_DEBUG_INFO = YES;
578
+ ONLY_ACTIVE_ARCH = YES;
579
+ OTHER_CPLUSPLUSFLAGS = (
580
+ "$(OTHER_CFLAGS)",
581
+ "-DFOLLY_NO_CONFIG",
582
+ "-DFOLLY_MOBILE=1",
583
+ "-DFOLLY_USE_LIBCPP=1",
584
+ "-DFOLLY_CFG_NO_COROUTINES=1",
585
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
586
+ );
587
+ SDKROOT = iphoneos;
588
+ };
589
+ name = Debug;
590
+ };
591
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
592
+ isa = XCBuildConfiguration;
593
+ buildSettings = {
594
+ ALWAYS_SEARCH_USER_PATHS = NO;
595
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
596
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
597
+ CLANG_CXX_LIBRARY = "libc++";
598
+ CLANG_ENABLE_MODULES = YES;
599
+ CLANG_ENABLE_OBJC_ARC = YES;
600
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
601
+ CLANG_WARN_BOOL_CONVERSION = YES;
602
+ CLANG_WARN_COMMA = YES;
603
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
604
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
605
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
606
+ CLANG_WARN_EMPTY_BODY = YES;
607
+ CLANG_WARN_ENUM_CONVERSION = YES;
608
+ CLANG_WARN_INFINITE_RECURSION = YES;
609
+ CLANG_WARN_INT_CONVERSION = YES;
610
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
611
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
612
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
613
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
614
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
615
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
616
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
617
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
618
+ CLANG_WARN_UNREACHABLE_CODE = YES;
619
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
620
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
621
+ COPY_PHASE_STRIP = YES;
622
+ ENABLE_NS_ASSERTIONS = NO;
623
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
624
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
625
+ GCC_C_LANGUAGE_STANDARD = gnu99;
626
+ GCC_NO_COMMON_BLOCKS = YES;
627
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
628
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
629
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
630
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
631
+ GCC_WARN_UNUSED_FUNCTION = YES;
632
+ GCC_WARN_UNUSED_VARIABLE = YES;
633
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
634
+ LD_RUNPATH_SEARCH_PATHS = (
635
+ /usr/lib/swift,
636
+ "$(inherited)",
637
+ );
638
+ LIBRARY_SEARCH_PATHS = (
639
+ "\"$(SDKROOT)/usr/lib/swift\"",
640
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
641
+ "\"$(inherited)\"",
642
+ );
643
+ MTL_ENABLE_DEBUG_INFO = NO;
644
+ OTHER_CPLUSPLUSFLAGS = (
645
+ "$(OTHER_CFLAGS)",
646
+ "-DFOLLY_NO_CONFIG",
647
+ "-DFOLLY_MOBILE=1",
648
+ "-DFOLLY_USE_LIBCPP=1",
649
+ "-DFOLLY_CFG_NO_COROUTINES=1",
650
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
651
+ );
652
+ SDKROOT = iphoneos;
653
+ VALIDATE_PRODUCT = YES;
654
+ };
655
+ name = Release;
656
+ };
657
+ /* End XCBuildConfiguration section */
658
+
659
+ /* Begin XCConfigurationList section */
660
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactNativeSignerExampleTests" */ = {
661
+ isa = XCConfigurationList;
662
+ buildConfigurations = (
663
+ 00E356F61AD99517003FC87E /* Debug */,
664
+ 00E356F71AD99517003FC87E /* Release */,
665
+ );
666
+ defaultConfigurationIsVisible = 0;
667
+ defaultConfigurationName = Release;
668
+ };
669
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNativeSignerExample" */ = {
670
+ isa = XCConfigurationList;
671
+ buildConfigurations = (
672
+ 13B07F941A680F5B00A75B9A /* Debug */,
673
+ 13B07F951A680F5B00A75B9A /* Release */,
674
+ );
675
+ defaultConfigurationIsVisible = 0;
676
+ defaultConfigurationName = Release;
677
+ };
678
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeSignerExample" */ = {
679
+ isa = XCConfigurationList;
680
+ buildConfigurations = (
681
+ 83CBBA201A601CBA00E9B192 /* Debug */,
682
+ 83CBBA211A601CBA00E9B192 /* Release */,
683
+ );
684
+ defaultConfigurationIsVisible = 0;
685
+ defaultConfigurationName = Release;
686
+ };
687
+ /* End XCConfigurationList section */
688
+ };
689
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
690
+ }