@regulaforensics/react-native-document-reader-api 6.8.1 → 6.9.0

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 (75) hide show
  1. package/RNDocumentReaderApi.podspec +1 -1
  2. package/android/build.gradle +18 -1
  3. package/android/src/main/java/com/regula/documentreader/BluetoothUtil.kt +6 -6
  4. package/android/src/main/java/com/regula/documentreader/Helpers.java +117 -3
  5. package/android/src/main/java/com/regula/documentreader/JSONConstructor.java +182 -261
  6. package/android/src/main/java/com/regula/documentreader/RNRegulaDocumentReaderModule.java +142 -125
  7. package/android/src/main/java/com/regula/documentreader/RegulaConfig.java +114 -26
  8. package/example/.bundle/config +2 -0
  9. package/example/.eslintrc.js +1 -1
  10. package/example/.prettierrc.js +2 -2
  11. package/example/.watchmanconfig +1 -1
  12. package/example/App.tsx +358 -0
  13. package/example/Gemfile +6 -0
  14. package/example/Gemfile.lock +98 -0
  15. package/example/__tests__/{App-test.js → App.test.tsx} +3 -0
  16. package/example/android/app/build.gradle +77 -59
  17. package/example/android/app/src/debug/AndroidManifest.xml +1 -1
  18. package/example/android/app/src/debug/java/com/regula/dr/fullrfid/ReactNativeFlipper.java +7 -4
  19. package/example/android/app/src/main/AndroidManifest.xml +4 -9
  20. package/example/android/app/src/main/java/com/regula/dr/fullrfid/MainActivity.java +17 -0
  21. package/example/android/app/src/main/java/com/regula/dr/fullrfid/MainApplication.java +17 -36
  22. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  23. package/example/android/app/src/main/res/values/styles.xml +2 -2
  24. package/example/android/app/src/release/java/com/regula/dr/fullrfid/ReactNativeFlipper.java +20 -0
  25. package/example/android/build.gradle +7 -18
  26. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  27. package/example/android/gradle/wrapper/gradle-wrapper.properties +2 -1
  28. package/example/android/gradle.properties +42 -2
  29. package/example/android/gradlew +164 -105
  30. package/example/android/gradlew.bat +92 -89
  31. package/example/android/settings.gradle +2 -1
  32. package/example/app.json +1 -1
  33. package/example/ios/.xcode.env +11 -0
  34. package/example/ios/DocumentReader/AppDelegate.h +2 -4
  35. package/example/ios/DocumentReader/AppDelegate.mm +26 -0
  36. package/example/ios/DocumentReader/DocumentReader.entitlements +0 -1
  37. package/example/ios/DocumentReader/Images.xcassets/AppIcon.appiconset/Contents.json +30 -15
  38. package/example/ios/DocumentReader/Info.plist +8 -4
  39. package/example/ios/DocumentReader/main.m +2 -1
  40. package/example/ios/DocumentReader.xcodeproj/project.pbxproj +134 -96
  41. package/example/ios/DocumentReaderTests/DocumentReaderTests.m +14 -13
  42. package/example/ios/Podfile +45 -15
  43. package/example/jest.config.js +3 -0
  44. package/example/metro.config.js +18 -15
  45. package/example/package-lock.json +13091 -0
  46. package/example/package.json +32 -22
  47. package/example/tsconfig.json +3 -0
  48. package/index.d.ts +426 -3015
  49. package/index.js +253 -2954
  50. package/ios/RGLWJSONConstructor.h +8 -6
  51. package/ios/RGLWJSONConstructor.m +109 -92
  52. package/ios/RGLWRegulaConfig.h +2 -1
  53. package/ios/RGLWRegulaConfig.m +139 -41
  54. package/ios/RNRegulaDocumentReader.m +55 -42
  55. package/package.json +1 -1
  56. package/example/.buckconfig +0 -6
  57. package/example/.editorconfig +0 -3
  58. package/example/.flowconfig +0 -65
  59. package/example/.gitattributes +0 -3
  60. package/example/App.js +0 -399
  61. package/example/android/app/BUCK +0 -55
  62. package/example/android/app/_BUCK +0 -55
  63. package/example/android/app/build_defs.bzl +0 -19
  64. package/example/android/app/src/main/assets/index.android.bundle +0 -636
  65. package/example/android/app/src/main/res/drawable-mdpi/images_id.png +0 -0
  66. package/example/android/app/src/main/res/drawable-mdpi/images_portrait.png +0 -0
  67. package/example/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecheckbox_img_ic_check_box.png +0 -0
  68. package/example/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png +0 -0
  69. package/example/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecheckbox_img_ic_indeterminate_check_box.png +0 -0
  70. package/example/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativecheckbox_img_ic_check_box.png +0 -0
  71. package/example/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png +0 -0
  72. package/example/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativecheckbox_img_ic_check_box.png +0 -0
  73. package/example/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png +0 -0
  74. package/example/ios/DocumentReader/AppDelegate.m +0 -62
  75. package/example/ios/DocumentReader/Base.lproj/LaunchScreen.xib +0 -42
@@ -17,19 +17,17 @@
17
17
  <key>CFBundlePackageType</key>
18
18
  <string>APPL</string>
19
19
  <key>CFBundleShortVersionString</key>
20
- <string>1.0</string>
20
+ <string>$(MARKETING_VERSION)</string>
21
21
  <key>CFBundleSignature</key>
22
22
  <string>????</string>
23
23
  <key>CFBundleVersion</key>
24
- <string>1</string>
24
+ <string>$(CURRENT_PROJECT_VERSION)</string>
25
25
  <key>LSRequiresIPhoneOS</key>
26
26
  <true/>
27
27
  <key>NFCReaderUsageDescription</key>
28
28
  <string>To use NFC</string>
29
29
  <key>NSAppTransportSecurity</key>
30
30
  <dict>
31
- <key>NSAllowsArbitraryLoads</key>
32
- <true/>
33
31
  <key>NSExceptionDomains</key>
34
32
  <dict>
35
33
  <key>localhost</key>
@@ -55,6 +53,12 @@
55
53
  <array>
56
54
  <string>UIInterfaceOrientationPortrait</string>
57
55
  </array>
56
+ <key>UISupportedInterfaceOrientations~ipad</key>
57
+ <array>
58
+ <string>UIInterfaceOrientationLandscapeLeft</string>
59
+ <string>UIInterfaceOrientationLandscapeRight</string>
60
+ <string>UIInterfaceOrientationPortrait</string>
61
+ </array>
58
62
  <key>UIViewControllerBasedStatusBarAppearance</key>
59
63
  <false/>
60
64
  <key>com.apple.developer.nfc.readersession.iso7816.select-identifiers</key>
@@ -2,7 +2,8 @@
2
2
 
3
3
  #import "AppDelegate.h"
4
4
 
5
- int main(int argc, char * argv[]) {
5
+ int main(int argc, char *argv[])
6
+ {
6
7
  @autoreleasepool {
7
8
  return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
8
9
  }
@@ -8,13 +8,13 @@
8
8
 
9
9
  /* Begin PBXBuildFile section */
10
10
  00E356F31AD99517003FC87E /* DocumentReaderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* DocumentReaderTests.m */; };
11
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
11
+ 0C80B921A6F3F58F76C31292 /* libPods-DocumentReader.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-DocumentReader.a */; };
12
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
12
13
  13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13
14
  13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15
+ 347154A12A4DC22300361434 /* regula.license in Resources */ = {isa = PBXBuildFile; fileRef = 347154A02A4DC22300361434 /* regula.license */; };
16
+ 7699B88040F8A987B510C191 /* libPods-DocumentReader-DocumentReaderTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-DocumentReader-DocumentReaderTests.a */; };
14
17
  81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
15
- 8C80FC0B27356FF500CAD407 /* regula.license in Resources */ = {isa = PBXBuildFile; fileRef = 8C80FC0A27356FF500CAD407 /* regula.license */; };
16
- E7DBFE61855F7D0B4758857F /* libPods-DocumentReader-DocumentReaderTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8857AD499E067931F1E9EEFA /* libPods-DocumentReader-DocumentReaderTests.a */; };
17
- F3DA0BB7E58031D2DAB5EB63 /* libPods-DocumentReader.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F969B96D45C2B9D3254B2C2 /* libPods-DocumentReader.a */; };
18
18
  /* End PBXBuildFile section */
19
19
 
20
20
  /* Begin PBXContainerItemProxy section */
@@ -33,19 +33,19 @@
33
33
  00E356F21AD99517003FC87E /* DocumentReaderTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DocumentReaderTests.m; sourceTree = "<group>"; };
34
34
  13B07F961A680F5B00A75B9A /* DocumentReader.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DocumentReader.app; sourceTree = BUILT_PRODUCTS_DIR; };
35
35
  13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = DocumentReader/AppDelegate.h; sourceTree = "<group>"; };
36
- 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = DocumentReader/AppDelegate.m; sourceTree = "<group>"; };
36
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = DocumentReader/AppDelegate.mm; sourceTree = "<group>"; };
37
37
  13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = DocumentReader/Images.xcassets; sourceTree = "<group>"; };
38
38
  13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = DocumentReader/Info.plist; sourceTree = "<group>"; };
39
39
  13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = DocumentReader/main.m; sourceTree = "<group>"; };
40
- 1F969B96D45C2B9D3254B2C2 /* libPods-DocumentReader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DocumentReader.a"; sourceTree = BUILT_PRODUCTS_DIR; };
41
- 2442BDF33A526178CA02CD8B /* Pods-DocumentReader-DocumentReaderTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader-DocumentReaderTests.debug.xcconfig"; path = "Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests.debug.xcconfig"; sourceTree = "<group>"; };
42
- 5D97E1634A81F8B8D5F5BB8B /* Pods-DocumentReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader.release.xcconfig"; path = "Target Support Files/Pods-DocumentReader/Pods-DocumentReader.release.xcconfig"; sourceTree = "<group>"; };
43
- 7DC59113504F5441D852472F /* Pods-DocumentReader-DocumentReaderTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader-DocumentReaderTests.release.xcconfig"; path = "Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests.release.xcconfig"; sourceTree = "<group>"; };
40
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-DocumentReader-DocumentReaderTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DocumentReader-DocumentReaderTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
41
+ 3471549F2A4D9A1500361434 /* DocumentReader.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = DocumentReader.entitlements; path = DocumentReader/DocumentReader.entitlements; sourceTree = "<group>"; };
42
+ 347154A02A4DC22300361434 /* regula.license */ = {isa = PBXFileReference; lastKnownFileType = file; name = regula.license; path = ../../../../.hidden/license/regula.license; sourceTree = "<group>"; };
43
+ 3B4392A12AC88292D35C810B /* Pods-DocumentReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader.debug.xcconfig"; path = "Target Support Files/Pods-DocumentReader/Pods-DocumentReader.debug.xcconfig"; sourceTree = "<group>"; };
44
+ 5709B34CF0A7D63546082F79 /* Pods-DocumentReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader.release.xcconfig"; path = "Target Support Files/Pods-DocumentReader/Pods-DocumentReader.release.xcconfig"; sourceTree = "<group>"; };
45
+ 5B7EB9410499542E8C5724F5 /* Pods-DocumentReader-DocumentReaderTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader-DocumentReaderTests.debug.xcconfig"; path = "Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests.debug.xcconfig"; sourceTree = "<group>"; };
46
+ 5DCACB8F33CDC322A6C60F78 /* libPods-DocumentReader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DocumentReader.a"; sourceTree = BUILT_PRODUCTS_DIR; };
44
47
  81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = DocumentReader/LaunchScreen.storyboard; sourceTree = "<group>"; };
45
- 8857AD499E067931F1E9EEFA /* libPods-DocumentReader-DocumentReaderTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DocumentReader-DocumentReaderTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
46
- 8C2CFE33DF8F3DA7CDF5DA63 /* Pods-DocumentReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader.debug.xcconfig"; path = "Target Support Files/Pods-DocumentReader/Pods-DocumentReader.debug.xcconfig"; sourceTree = "<group>"; };
47
- 8C80FC0927356EE800CAD407 /* DocumentReader.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = DocumentReader.entitlements; path = DocumentReader/DocumentReader.entitlements; sourceTree = "<group>"; };
48
- 8C80FC0A27356FF500CAD407 /* regula.license */ = {isa = PBXFileReference; lastKnownFileType = file; name = regula.license; path = DocumentReader/regula.license; sourceTree = "<group>"; };
48
+ 89C6BE57DB24E9ADA2F236DE /* Pods-DocumentReader-DocumentReaderTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader-DocumentReaderTests.release.xcconfig"; path = "Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests.release.xcconfig"; sourceTree = "<group>"; };
49
49
  ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
50
50
  /* End PBXFileReference section */
51
51
 
@@ -54,7 +54,7 @@
54
54
  isa = PBXFrameworksBuildPhase;
55
55
  buildActionMask = 2147483647;
56
56
  files = (
57
- E7DBFE61855F7D0B4758857F /* libPods-DocumentReader-DocumentReaderTests.a in Frameworks */,
57
+ 7699B88040F8A987B510C191 /* libPods-DocumentReader-DocumentReaderTests.a in Frameworks */,
58
58
  );
59
59
  runOnlyForDeploymentPostprocessing = 0;
60
60
  };
@@ -62,7 +62,7 @@
62
62
  isa = PBXFrameworksBuildPhase;
63
63
  buildActionMask = 2147483647;
64
64
  files = (
65
- F3DA0BB7E58031D2DAB5EB63 /* libPods-DocumentReader.a in Frameworks */,
65
+ 0C80B921A6F3F58F76C31292 /* libPods-DocumentReader.a in Frameworks */,
66
66
  );
67
67
  runOnlyForDeploymentPostprocessing = 0;
68
68
  };
@@ -89,10 +89,10 @@
89
89
  13B07FAE1A68108700A75B9A /* DocumentReader */ = {
90
90
  isa = PBXGroup;
91
91
  children = (
92
- 8C80FC0A27356FF500CAD407 /* regula.license */,
93
- 8C80FC0927356EE800CAD407 /* DocumentReader.entitlements */,
92
+ 347154A02A4DC22300361434 /* regula.license */,
93
+ 3471549F2A4D9A1500361434 /* DocumentReader.entitlements */,
94
94
  13B07FAF1A68108700A75B9A /* AppDelegate.h */,
95
- 13B07FB01A68108700A75B9A /* AppDelegate.m */,
95
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
96
96
  13B07FB51A68108700A75B9A /* Images.xcassets */,
97
97
  13B07FB61A68108700A75B9A /* Info.plist */,
98
98
  81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
@@ -105,23 +105,12 @@
105
105
  isa = PBXGroup;
106
106
  children = (
107
107
  ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
108
- 1F969B96D45C2B9D3254B2C2 /* libPods-DocumentReader.a */,
109
- 8857AD499E067931F1E9EEFA /* libPods-DocumentReader-DocumentReaderTests.a */,
108
+ 5DCACB8F33CDC322A6C60F78 /* libPods-DocumentReader.a */,
109
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-DocumentReader-DocumentReaderTests.a */,
110
110
  );
111
111
  name = Frameworks;
112
112
  sourceTree = "<group>";
113
113
  };
114
- 6DB3F4A4B76CE559B39EF629 /* Pods */ = {
115
- isa = PBXGroup;
116
- children = (
117
- 8C2CFE33DF8F3DA7CDF5DA63 /* Pods-DocumentReader.debug.xcconfig */,
118
- 5D97E1634A81F8B8D5F5BB8B /* Pods-DocumentReader.release.xcconfig */,
119
- 2442BDF33A526178CA02CD8B /* Pods-DocumentReader-DocumentReaderTests.debug.xcconfig */,
120
- 7DC59113504F5441D852472F /* Pods-DocumentReader-DocumentReaderTests.release.xcconfig */,
121
- );
122
- path = Pods;
123
- sourceTree = "<group>";
124
- };
125
114
  832341AE1AAA6A7D00B99B32 /* Libraries */ = {
126
115
  isa = PBXGroup;
127
116
  children = (
@@ -137,7 +126,7 @@
137
126
  00E356EF1AD99517003FC87E /* DocumentReaderTests */,
138
127
  83CBBA001A601CBA00E9B192 /* Products */,
139
128
  2D16E6871FA4F8E400B85C8A /* Frameworks */,
140
- 6DB3F4A4B76CE559B39EF629 /* Pods */,
129
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
141
130
  );
142
131
  indentWidth = 2;
143
132
  sourceTree = "<group>";
@@ -153,6 +142,17 @@
153
142
  name = Products;
154
143
  sourceTree = "<group>";
155
144
  };
145
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
146
+ isa = PBXGroup;
147
+ children = (
148
+ 3B4392A12AC88292D35C810B /* Pods-DocumentReader.debug.xcconfig */,
149
+ 5709B34CF0A7D63546082F79 /* Pods-DocumentReader.release.xcconfig */,
150
+ 5B7EB9410499542E8C5724F5 /* Pods-DocumentReader-DocumentReaderTests.debug.xcconfig */,
151
+ 89C6BE57DB24E9ADA2F236DE /* Pods-DocumentReader-DocumentReaderTests.release.xcconfig */,
152
+ );
153
+ path = Pods;
154
+ sourceTree = "<group>";
155
+ };
156
156
  /* End PBXGroup section */
157
157
 
158
158
  /* Begin PBXNativeTarget section */
@@ -160,12 +160,12 @@
160
160
  isa = PBXNativeTarget;
161
161
  buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "DocumentReaderTests" */;
162
162
  buildPhases = (
163
- BD5AF7ABF1D3332E5DC46072 /* [CP] Check Pods Manifest.lock */,
163
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
164
164
  00E356EA1AD99517003FC87E /* Sources */,
165
165
  00E356EB1AD99517003FC87E /* Frameworks */,
166
166
  00E356EC1AD99517003FC87E /* Resources */,
167
- 6AE374FA5B16E9D691751A9F /* [CP] Embed Pods Frameworks */,
168
- A25463FA1541B473A18BD09D /* [CP] Copy Pods Resources */,
167
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
168
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
169
169
  );
170
170
  buildRules = (
171
171
  );
@@ -181,14 +181,14 @@
181
181
  isa = PBXNativeTarget;
182
182
  buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DocumentReader" */;
183
183
  buildPhases = (
184
- C3082C15116FB040A503764F /* [CP] Check Pods Manifest.lock */,
184
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
185
185
  FD10A7F022414F080027D42C /* Start Packager */,
186
186
  13B07F871A680F5B00A75B9A /* Sources */,
187
187
  13B07F8C1A680F5B00A75B9A /* Frameworks */,
188
188
  13B07F8E1A680F5B00A75B9A /* Resources */,
189
189
  00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
190
- E692B304473B4A747056BD4F /* [CP] Embed Pods Frameworks */,
191
- AE6CCD5DF07545FB3D764CEA /* [CP] Copy Pods Resources */,
190
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
191
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
192
192
  );
193
193
  buildRules = (
194
194
  );
@@ -249,7 +249,7 @@
249
249
  files = (
250
250
  81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
251
251
  13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
252
- 8C80FC0B27356FF500CAD407 /* regula.license in Resources */,
252
+ 347154A12A4DC22300361434 /* regula.license in Resources */,
253
253
  );
254
254
  runOnlyForDeploymentPostprocessing = 0;
255
255
  };
@@ -262,124 +262,126 @@
262
262
  files = (
263
263
  );
264
264
  inputPaths = (
265
+ "$(SRCROOT)/.xcode.env.local",
266
+ "$(SRCROOT)/.xcode.env",
265
267
  );
266
268
  name = "Bundle React Native code and images";
267
269
  outputPaths = (
268
270
  );
269
271
  runOnlyForDeploymentPostprocessing = 0;
270
272
  shellPath = /bin/sh;
271
- shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
273
+ 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";
272
274
  };
273
- 6AE374FA5B16E9D691751A9F /* [CP] Embed Pods Frameworks */ = {
275
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
274
276
  isa = PBXShellScriptBuildPhase;
275
277
  buildActionMask = 2147483647;
276
278
  files = (
277
279
  );
278
280
  inputFileListPaths = (
279
- "${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
281
+ "${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-frameworks-${CONFIGURATION}-input-files.xcfilelist",
280
282
  );
281
283
  name = "[CP] Embed Pods Frameworks";
282
284
  outputFileListPaths = (
283
- "${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
285
+ "${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-frameworks-${CONFIGURATION}-output-files.xcfilelist",
284
286
  );
285
287
  runOnlyForDeploymentPostprocessing = 0;
286
288
  shellPath = /bin/sh;
287
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-frameworks.sh\"\n";
289
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-frameworks.sh\"\n";
288
290
  showEnvVarsInLog = 0;
289
291
  };
290
- A25463FA1541B473A18BD09D /* [CP] Copy Pods Resources */ = {
292
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
291
293
  isa = PBXShellScriptBuildPhase;
292
294
  buildActionMask = 2147483647;
293
295
  files = (
294
296
  );
295
297
  inputFileListPaths = (
296
- "${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-resources-${CONFIGURATION}-input-files.xcfilelist",
297
298
  );
298
- name = "[CP] Copy Pods Resources";
299
+ inputPaths = (
300
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
301
+ "${PODS_ROOT}/Manifest.lock",
302
+ );
303
+ name = "[CP] Check Pods Manifest.lock";
299
304
  outputFileListPaths = (
300
- "${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-resources-${CONFIGURATION}-output-files.xcfilelist",
305
+ );
306
+ outputPaths = (
307
+ "$(DERIVED_FILE_DIR)/Pods-DocumentReader-DocumentReaderTests-checkManifestLockResult.txt",
301
308
  );
302
309
  runOnlyForDeploymentPostprocessing = 0;
303
310
  shellPath = /bin/sh;
304
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-resources.sh\"\n";
311
+ 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";
305
312
  showEnvVarsInLog = 0;
306
313
  };
307
- AE6CCD5DF07545FB3D764CEA /* [CP] Copy Pods Resources */ = {
314
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
308
315
  isa = PBXShellScriptBuildPhase;
309
316
  buildActionMask = 2147483647;
310
317
  files = (
311
318
  );
312
319
  inputFileListPaths = (
313
- "${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-resources-${CONFIGURATION}-input-files.xcfilelist",
314
320
  );
315
- name = "[CP] Copy Pods Resources";
321
+ inputPaths = (
322
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
323
+ "${PODS_ROOT}/Manifest.lock",
324
+ );
325
+ name = "[CP] Check Pods Manifest.lock";
316
326
  outputFileListPaths = (
317
- "${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-resources-${CONFIGURATION}-output-files.xcfilelist",
327
+ );
328
+ outputPaths = (
329
+ "$(DERIVED_FILE_DIR)/Pods-DocumentReader-checkManifestLockResult.txt",
318
330
  );
319
331
  runOnlyForDeploymentPostprocessing = 0;
320
332
  shellPath = /bin/sh;
321
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-resources.sh\"\n";
333
+ 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";
322
334
  showEnvVarsInLog = 0;
323
335
  };
324
- BD5AF7ABF1D3332E5DC46072 /* [CP] Check Pods Manifest.lock */ = {
336
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
325
337
  isa = PBXShellScriptBuildPhase;
326
338
  buildActionMask = 2147483647;
327
339
  files = (
328
340
  );
329
341
  inputFileListPaths = (
342
+ "${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
330
343
  );
331
- inputPaths = (
332
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
333
- "${PODS_ROOT}/Manifest.lock",
334
- );
335
- name = "[CP] Check Pods Manifest.lock";
344
+ name = "[CP] Embed Pods Frameworks";
336
345
  outputFileListPaths = (
337
- );
338
- outputPaths = (
339
- "$(DERIVED_FILE_DIR)/Pods-DocumentReader-DocumentReaderTests-checkManifestLockResult.txt",
346
+ "${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
340
347
  );
341
348
  runOnlyForDeploymentPostprocessing = 0;
342
349
  shellPath = /bin/sh;
343
- 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";
350
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-frameworks.sh\"\n";
344
351
  showEnvVarsInLog = 0;
345
352
  };
346
- C3082C15116FB040A503764F /* [CP] Check Pods Manifest.lock */ = {
353
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
347
354
  isa = PBXShellScriptBuildPhase;
348
355
  buildActionMask = 2147483647;
349
356
  files = (
350
357
  );
351
358
  inputFileListPaths = (
359
+ "${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-resources-${CONFIGURATION}-input-files.xcfilelist",
352
360
  );
353
- inputPaths = (
354
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
355
- "${PODS_ROOT}/Manifest.lock",
356
- );
357
- name = "[CP] Check Pods Manifest.lock";
361
+ name = "[CP] Copy Pods Resources";
358
362
  outputFileListPaths = (
359
- );
360
- outputPaths = (
361
- "$(DERIVED_FILE_DIR)/Pods-DocumentReader-checkManifestLockResult.txt",
363
+ "${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-resources-${CONFIGURATION}-output-files.xcfilelist",
362
364
  );
363
365
  runOnlyForDeploymentPostprocessing = 0;
364
366
  shellPath = /bin/sh;
365
- 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";
367
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-resources.sh\"\n";
366
368
  showEnvVarsInLog = 0;
367
369
  };
368
- E692B304473B4A747056BD4F /* [CP] Embed Pods Frameworks */ = {
370
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
369
371
  isa = PBXShellScriptBuildPhase;
370
372
  buildActionMask = 2147483647;
371
373
  files = (
372
374
  );
373
375
  inputFileListPaths = (
374
- "${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-frameworks-${CONFIGURATION}-input-files.xcfilelist",
376
+ "${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-resources-${CONFIGURATION}-input-files.xcfilelist",
375
377
  );
376
- name = "[CP] Embed Pods Frameworks";
378
+ name = "[CP] Copy Pods Resources";
377
379
  outputFileListPaths = (
378
- "${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-frameworks-${CONFIGURATION}-output-files.xcfilelist",
380
+ "${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-resources-${CONFIGURATION}-output-files.xcfilelist",
379
381
  );
380
382
  runOnlyForDeploymentPostprocessing = 0;
381
383
  shellPath = /bin/sh;
382
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-frameworks.sh\"\n";
384
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-resources.sh\"\n";
383
385
  showEnvVarsInLog = 0;
384
386
  };
385
387
  FD10A7F022414F080027D42C /* Start Packager */ = {
@@ -416,7 +418,7 @@
416
418
  isa = PBXSourcesBuildPhase;
417
419
  buildActionMask = 2147483647;
418
420
  files = (
419
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
421
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
420
422
  13B07FC11A68108700A75B9A /* main.m in Sources */,
421
423
  );
422
424
  runOnlyForDeploymentPostprocessing = 0;
@@ -434,7 +436,7 @@
434
436
  /* Begin XCBuildConfiguration section */
435
437
  00E356F61AD99517003FC87E /* Debug */ = {
436
438
  isa = XCBuildConfiguration;
437
- baseConfigurationReference = 2442BDF33A526178CA02CD8B /* Pods-DocumentReader-DocumentReaderTests.debug.xcconfig */;
439
+ baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-DocumentReader-DocumentReaderTests.debug.xcconfig */;
438
440
  buildSettings = {
439
441
  BUNDLE_LOADER = "$(TEST_HOST)";
440
442
  GCC_PREPROCESSOR_DEFINITIONS = (
@@ -442,7 +444,7 @@
442
444
  "$(inherited)",
443
445
  );
444
446
  INFOPLIST_FILE = DocumentReaderTests/Info.plist;
445
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
447
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
446
448
  LD_RUNPATH_SEARCH_PATHS = (
447
449
  "$(inherited)",
448
450
  "@executable_path/Frameworks",
@@ -453,20 +455,25 @@
453
455
  "-lc++",
454
456
  "$(inherited)",
455
457
  );
456
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
458
+ PRODUCT_BUNDLE_IDENTIFIER = com.regula.dr.fullrfid;
457
459
  PRODUCT_NAME = "$(TARGET_NAME)";
460
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
461
+ SUPPORTS_MACCATALYST = NO;
462
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
463
+ SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
464
+ TARGETED_DEVICE_FAMILY = 1;
458
465
  TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DocumentReader.app/DocumentReader";
459
466
  };
460
467
  name = Debug;
461
468
  };
462
469
  00E356F71AD99517003FC87E /* Release */ = {
463
470
  isa = XCBuildConfiguration;
464
- baseConfigurationReference = 7DC59113504F5441D852472F /* Pods-DocumentReader-DocumentReaderTests.release.xcconfig */;
471
+ baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-DocumentReader-DocumentReaderTests.release.xcconfig */;
465
472
  buildSettings = {
466
473
  BUNDLE_LOADER = "$(TEST_HOST)";
467
474
  COPY_PHASE_STRIP = NO;
468
475
  INFOPLIST_FILE = DocumentReaderTests/Info.plist;
469
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
476
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
470
477
  LD_RUNPATH_SEARCH_PATHS = (
471
478
  "$(inherited)",
472
479
  "@executable_path/Frameworks",
@@ -477,15 +484,20 @@
477
484
  "-lc++",
478
485
  "$(inherited)",
479
486
  );
480
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
487
+ PRODUCT_BUNDLE_IDENTIFIER = com.regula.dr.fullrfid;
481
488
  PRODUCT_NAME = "$(TARGET_NAME)";
489
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
490
+ SUPPORTS_MACCATALYST = NO;
491
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
492
+ SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
493
+ TARGETED_DEVICE_FAMILY = 1;
482
494
  TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DocumentReader.app/DocumentReader";
483
495
  };
484
496
  name = Release;
485
497
  };
486
498
  13B07F941A680F5B00A75B9A /* Debug */ = {
487
499
  isa = XCBuildConfiguration;
488
- baseConfigurationReference = 8C2CFE33DF8F3DA7CDF5DA63 /* Pods-DocumentReader.debug.xcconfig */;
500
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-DocumentReader.debug.xcconfig */;
489
501
  buildSettings = {
490
502
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
491
503
  CLANG_ENABLE_MODULES = YES;
@@ -497,6 +509,7 @@
497
509
  "$(inherited)",
498
510
  "@executable_path/Frameworks",
499
511
  );
512
+ MARKETING_VERSION = 1.0;
500
513
  OTHER_LDFLAGS = (
501
514
  "$(inherited)",
502
515
  "-ObjC",
@@ -504,15 +517,20 @@
504
517
  );
505
518
  PRODUCT_BUNDLE_IDENTIFIER = regula.DocumentReader;
506
519
  PRODUCT_NAME = DocumentReader;
520
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
521
+ SUPPORTS_MACCATALYST = NO;
522
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
523
+ SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
507
524
  SWIFT_OPTIMIZATION_LEVEL = "-Onone";
508
525
  SWIFT_VERSION = 5.0;
526
+ TARGETED_DEVICE_FAMILY = 1;
509
527
  VERSIONING_SYSTEM = "apple-generic";
510
528
  };
511
529
  name = Debug;
512
530
  };
513
531
  13B07F951A680F5B00A75B9A /* Release */ = {
514
532
  isa = XCBuildConfiguration;
515
- baseConfigurationReference = 5D97E1634A81F8B8D5F5BB8B /* Pods-DocumentReader.release.xcconfig */;
533
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-DocumentReader.release.xcconfig */;
516
534
  buildSettings = {
517
535
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
518
536
  CLANG_ENABLE_MODULES = YES;
@@ -523,6 +541,7 @@
523
541
  "$(inherited)",
524
542
  "@executable_path/Frameworks",
525
543
  );
544
+ MARKETING_VERSION = 1.0;
526
545
  OTHER_LDFLAGS = (
527
546
  "$(inherited)",
528
547
  "-ObjC",
@@ -530,7 +549,12 @@
530
549
  );
531
550
  PRODUCT_BUNDLE_IDENTIFIER = regula.DocumentReader;
532
551
  PRODUCT_NAME = DocumentReader;
552
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
553
+ SUPPORTS_MACCATALYST = NO;
554
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
555
+ SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
533
556
  SWIFT_VERSION = 5.0;
557
+ TARGETED_DEVICE_FAMILY = 1;
534
558
  VERSIONING_SYSTEM = "apple-generic";
535
559
  };
536
560
  name = Release;
@@ -540,7 +564,7 @@
540
564
  buildSettings = {
541
565
  ALWAYS_SEARCH_USER_PATHS = NO;
542
566
  CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
543
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
567
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
544
568
  CLANG_CXX_LIBRARY = "libc++";
545
569
  CLANG_ENABLE_MODULES = YES;
546
570
  CLANG_ENABLE_OBJC_ARC = YES;
@@ -568,7 +592,7 @@
568
592
  COPY_PHASE_STRIP = NO;
569
593
  ENABLE_STRICT_OBJC_MSGSEND = YES;
570
594
  ENABLE_TESTABILITY = YES;
571
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
595
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
572
596
  GCC_C_LANGUAGE_STANDARD = gnu99;
573
597
  GCC_DYNAMIC_NO_PIC = NO;
574
598
  GCC_NO_COMMON_BLOCKS = YES;
@@ -584,7 +608,7 @@
584
608
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
585
609
  GCC_WARN_UNUSED_FUNCTION = YES;
586
610
  GCC_WARN_UNUSED_VARIABLE = YES;
587
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
611
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
588
612
  LD_RUNPATH_SEARCH_PATHS = (
589
613
  /usr/lib/swift,
590
614
  "$(inherited)",
@@ -592,11 +616,18 @@
592
616
  LIBRARY_SEARCH_PATHS = (
593
617
  "\"$(SDKROOT)/usr/lib/swift\"",
594
618
  "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
595
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
596
619
  "\"$(inherited)\"",
597
620
  );
598
621
  MTL_ENABLE_DEBUG_INFO = YES;
599
622
  ONLY_ACTIVE_ARCH = YES;
623
+ OTHER_CFLAGS = "$(inherited)";
624
+ OTHER_CPLUSPLUSFLAGS = (
625
+ "$(OTHER_CFLAGS)",
626
+ "-DFOLLY_NO_CONFIG",
627
+ "-DFOLLY_MOBILE=1",
628
+ "-DFOLLY_USE_LIBCPP=1",
629
+ );
630
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
600
631
  SDKROOT = iphoneos;
601
632
  };
602
633
  name = Debug;
@@ -606,7 +637,7 @@
606
637
  buildSettings = {
607
638
  ALWAYS_SEARCH_USER_PATHS = NO;
608
639
  CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
609
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
640
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
610
641
  CLANG_CXX_LIBRARY = "libc++";
611
642
  CLANG_ENABLE_MODULES = YES;
612
643
  CLANG_ENABLE_OBJC_ARC = YES;
@@ -634,7 +665,7 @@
634
665
  COPY_PHASE_STRIP = YES;
635
666
  ENABLE_NS_ASSERTIONS = NO;
636
667
  ENABLE_STRICT_OBJC_MSGSEND = YES;
637
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
668
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
638
669
  GCC_C_LANGUAGE_STANDARD = gnu99;
639
670
  GCC_NO_COMMON_BLOCKS = YES;
640
671
  GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
@@ -643,7 +674,7 @@
643
674
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
644
675
  GCC_WARN_UNUSED_FUNCTION = YES;
645
676
  GCC_WARN_UNUSED_VARIABLE = YES;
646
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
677
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
647
678
  LD_RUNPATH_SEARCH_PATHS = (
648
679
  /usr/lib/swift,
649
680
  "$(inherited)",
@@ -651,10 +682,17 @@
651
682
  LIBRARY_SEARCH_PATHS = (
652
683
  "\"$(SDKROOT)/usr/lib/swift\"",
653
684
  "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
654
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
655
685
  "\"$(inherited)\"",
656
686
  );
657
687
  MTL_ENABLE_DEBUG_INFO = NO;
688
+ OTHER_CFLAGS = "$(inherited)";
689
+ OTHER_CPLUSPLUSFLAGS = (
690
+ "$(OTHER_CFLAGS)",
691
+ "-DFOLLY_NO_CONFIG",
692
+ "-DFOLLY_MOBILE=1",
693
+ "-DFOLLY_USE_LIBCPP=1",
694
+ );
695
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
658
696
  SDKROOT = iphoneos;
659
697
  VALIDATE_PRODUCT = YES;
660
698
  };