@hawcx/react-native-sdk 1.0.1

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