dynamsoft-capture-vision-react-native 2.4.2000-alpha.2 → 2.6.1002

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 (99) hide show
  1. package/LICENSE +5 -0
  2. package/README.md +32 -4
  3. package/android/build.gradle +1 -5
  4. package/android/src/main/java/com/dynamsoft/reactnativelib/dce/CameraEnhancerModuleImpl.kt +73 -64
  5. package/android/src/main/java/com/dynamsoft/reactnativelib/dce/ImageEditorViewManagerImpl.kt +2 -18
  6. package/android/src/main/java/com/dynamsoft/reactnativelib/dce/ImageEditorViewModuleImpl.kt +49 -51
  7. package/android/src/main/java/com/dynamsoft/reactnativelib/dce/RNImageEditorView.kt +19 -0
  8. package/android/src/main/java/com/dynamsoft/reactnativelib/utils/ForDDN.kt +2 -0
  9. package/android/src/newarch/com/dynamsoft/reactnativelib/CameraViewManager.kt +6 -0
  10. package/dynamsoft-capture-vision-react-native.podspec +3 -5
  11. package/ios/CPP/RNDynamsoft+JSI.h +19 -0
  12. package/ios/CPP/RNDynamsoft+JSI.mm +145 -0
  13. package/ios/{RNDynamsoftCaptureVision/CPP → CPP}/RNDynamsoft+Json.h +12 -5
  14. package/ios/{RNDynamsoftCaptureVision/CPP/RNDynamsoft+Json.mm → CPP/RNDynamsoft+Json.m} +6 -124
  15. package/ios/{RNDynamsoftCaptureVision/RNDynamsoftCaptureVisionRouter.mm → RNDynamsoftCaptureVisionRouter.mm} +1 -0
  16. package/ios/{RNDynamsoftCaptureVision/RNDynamsoftImageEditorViewManager.mm → RNDynamsoftImageEditorViewManager.mm} +5 -1
  17. package/ios/{RNDynamsoftCaptureVision/RNDynamsoftImageManager.mm → RNDynamsoftImageManager.mm} +6 -2
  18. package/package.json +2 -2
  19. package/src/core/CapturedResultItem.tsx +18 -2
  20. package/src/core/CompletionListener.tsx +4 -3
  21. package/src/core/CoreModule.tsx +3 -3
  22. package/src/core/DSRect.tsx +28 -21
  23. package/src/core/EnumCaptureResultItemType.tsx +38 -7
  24. package/src/core/EnumColourChannelUsageType.tsx +25 -7
  25. package/src/core/EnumCrossVerificationStatus.tsx +43 -0
  26. package/src/core/EnumGrayscaleEnhancementMode.tsx +40 -7
  27. package/src/core/EnumGrayscaleTransformationMode.tsx +29 -5
  28. package/src/core/EnumPixelFormat.tsx +37 -32
  29. package/src/core/ImageData.tsx +51 -4
  30. package/src/core/ImageSourceAdapter.tsx +132 -72
  31. package/src/core/NativeDynamsoftImageSourceAdapterModule.tsx +24 -13
  32. package/src/core/Point.tsx +12 -9
  33. package/src/core/Quadrilateral.tsx +9 -5
  34. package/src/core/Rect.tsx +19 -16
  35. package/src/cvr/CaptureVisionRouter.tsx +571 -279
  36. package/src/cvr/CapturedResult.tsx +117 -76
  37. package/src/cvr/CapturedResultFilter.tsx +7 -0
  38. package/src/cvr/CapturedResultReceiver.tsx +59 -3
  39. package/src/cvr/EnumPresetTemplate.tsx +66 -1
  40. package/src/cvr/SimplifiedCaptureVisionSettings.tsx +45 -0
  41. package/src/dbr/BarcodeResultItem.tsx +31 -1
  42. package/src/dbr/DecodedBarcodesResult.tsx +18 -0
  43. package/src/dbr/EnumBarcodeFormat.tsx +61 -50
  44. package/src/dbr/EnumDeblurMode.tsx +28 -12
  45. package/src/dbr/EnumLocalizationMode.tsx +15 -1
  46. package/src/dbr/SimplifiedBarcodeReaderSettings.tsx +72 -12
  47. package/src/dce/CameraEnhancer.tsx +211 -89
  48. package/src/dce/CameraView.tsx +18 -1
  49. package/src/dce/DynamsoftCameraViewNativeComponent.ts +43 -0
  50. package/src/dce/EnumCameraPosition.tsx +3 -0
  51. package/src/dce/EnumDrawingLayerId.tsx +11 -0
  52. package/src/dce/EnumEnhancedFeatures.tsx +23 -7
  53. package/src/dce/EnumFocusMode.tsx +2 -0
  54. package/src/dce/FeedBack.tsx +9 -0
  55. package/src/dce/ImageEditorView.tsx +35 -2
  56. package/src/dcp/EnumMappingStatus.tsx +12 -3
  57. package/src/dcp/EnumValidationStatus.tsx +12 -3
  58. package/src/dcp/ParsedResult.tsx +16 -0
  59. package/src/dcp/ParsedResultItem.tsx +35 -0
  60. package/src/ddn/DetectedQuadResultItem.tsx +23 -0
  61. package/src/ddn/DetectedQuadsResult.tsx +20 -1
  62. package/src/ddn/EnumImageColourMode.tsx +9 -0
  63. package/src/ddn/NormalizedImageResultItem.tsx +25 -0
  64. package/src/ddn/NormalizedImagesResult.tsx +17 -1
  65. package/src/ddn/SimplifiedDocumentNormalizerSettings.tsx +38 -2
  66. package/src/dlr/CharacterResult.tsx +17 -0
  67. package/src/dlr/RecognizedTextLinesResult.tsx +23 -1
  68. package/src/dlr/SimplifiedLabelRecognizerSettings.tsx +21 -0
  69. package/src/dlr/TextLineResultItem.tsx +26 -0
  70. package/src/license/LicenseManager.tsx +19 -0
  71. package/src/utility/ImageManager.tsx +23 -0
  72. package/src/utility/MultiFrameResultCrossFilter.tsx +99 -6
  73. package/android/.gitignore +0 -4
  74. package/ios/ReactNativeDcv.xcodeproj/project.pbxproj +0 -390
  75. /package/ios/{RNDynamsoftCaptureVision/CPP → CPP}/DSImageData+HostObject.h +0 -0
  76. /package/ios/{RNDynamsoftCaptureVision/CPP → CPP}/DSImageData+HostObject.mm +0 -0
  77. /package/ios/{RNDynamsoftCaptureVision/CPP → CPP}/ImageDataHostObject.cpp +0 -0
  78. /package/ios/{RNDynamsoftCaptureVision/CPP → CPP}/ImageDataHostObject.hpp +0 -0
  79. /package/ios/{RNDynamsoftCaptureVision/CPP → CPP}/MutableRawBuffer.cpp +0 -0
  80. /package/ios/{RNDynamsoftCaptureVision/CPP → CPP}/MutableRawBuffer.hpp +0 -0
  81. /package/ios/{RNDynamsoftCaptureVision/CPP → CPP}/YeetJSIUtils.h +0 -0
  82. /package/ios/{RNDynamsoftCaptureVision/CPP → CPP}/YeetJSIUtils.mm +0 -0
  83. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftCameraView.h → RNDynamsoftCameraView.h} +0 -0
  84. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftCameraView.m → RNDynamsoftCameraView.m} +0 -0
  85. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftCameraViewManager.h → RNDynamsoftCameraViewManager.h} +0 -0
  86. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftCameraViewManager.m → RNDynamsoftCameraViewManager.m} +0 -0
  87. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftCaptureVisionRouter.h → RNDynamsoftCaptureVisionRouter.h} +0 -0
  88. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftImageEditorView.h → RNDynamsoftImageEditorView.h} +0 -0
  89. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftImageEditorView.m → RNDynamsoftImageEditorView.m} +0 -0
  90. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftImageEditorViewManager.h → RNDynamsoftImageEditorViewManager.h} +0 -0
  91. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftImageManager.h → RNDynamsoftImageManager.h} +0 -0
  92. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftImageSourceAdapter.h → RNDynamsoftImageSourceAdapter.h} +0 -0
  93. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftImageSourceAdapter.mm → RNDynamsoftImageSourceAdapter.mm} +0 -0
  94. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftLicense.h → RNDynamsoftLicense.h} +0 -0
  95. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftLicense.m → RNDynamsoftLicense.m} +0 -0
  96. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftMultiCrossFilter.h → RNDynamsoftMultiCrossFilter.h} +0 -0
  97. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftMultiCrossFilter.m → RNDynamsoftMultiCrossFilter.m} +0 -0
  98. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftVersions.h → RNDynamsoftVersions.h} +0 -0
  99. /package/ios/{RNDynamsoftCaptureVision/RNDynamsoftVersions.m → RNDynamsoftVersions.m} +0 -0
@@ -6,7 +6,26 @@ const isTurboModuleEnabled = global.__turboModuleProxy != null;
6
6
  const DynamsoftLicenseModule = isTurboModuleEnabled ?
7
7
  require("./NativeDynamsoftLicenseModule").default : NativeModules.DynamsoftLicenseModule;
8
8
 
9
+ /**
10
+ * The LicenseManager class provides a set of APIs to manage the licensing for the Dynamsoft Capture Vision architecture.
11
+ * */
9
12
  export class LicenseManager {
13
+
14
+ /**
15
+ * Initializes the license for the application using a license key.
16
+ * <p>
17
+ * Code snippet:
18
+ * ```
19
+ * LicenseManager.initLicense('your-license-key').then(() => {
20
+ * //Init license successfully.
21
+ * }).catch(error => {
22
+ * console.error("Init license failed.", error);
23
+ * });
24
+ * ```
25
+ *
26
+ * @param license - The license key to be used for initialization.
27
+ * @return Promise<void> - A promise that resolves when initLicense successfully or rejects an error when failed.
28
+ * */
10
29
  static initLicense(license: string): Promise<void> {
11
30
  return DynamsoftLicenseModule.initLicense(license)
12
31
  }
@@ -21,7 +21,19 @@ const installMethods = () => {
21
21
  }
22
22
  }
23
23
 
24
+ /**
25
+ * The ImageManager class is a utility class for managing and manipulating images.
26
+ * It provides functionality for saving images to files and drawing various shapes on images.
27
+ * */
24
28
  export class ImageManager {
29
+ /**
30
+ * Saves an image to the specified path and format.
31
+ * The desired file format is inferred from the file extension provided in the path parameter.
32
+ *
33
+ * @param imageData - The image to be saved, of type {@link ImageData}.
34
+ * @param path - The absolute file path, name and extension name, as a string, under which the image will be saved.
35
+ * @param overWrite - A flag indicating whether to overwrite the file if it already exists. Defaults to true.
36
+ * */
25
37
  saveToFile(imageData: ImageData | null | undefined, path: string | null | undefined, overWrite: boolean): void {
26
38
  installMethods();
27
39
  if(imageData && path){
@@ -30,6 +42,17 @@ export class ImageManager {
30
42
  }
31
43
  }
32
44
  }
45
+
46
+ /**
47
+ * Add quadrilaterals on the image.
48
+ *
49
+ * @param imageData - The {@link ImageData} to modify.
50
+ * @param quads - An array of {@link Quadrilateral} objects to be added on the image.
51
+ * @param colour - An ColorValue as an ARGB colour.
52
+ * @param thickness - The width of the border.
53
+ *
54
+ * @return {ImageData|null|undefined} - The modified ImageData.
55
+ * */
33
56
  drawOnImage(imageData: ImageData | null | undefined, quads: Quadrilateral[] | null | undefined, colour:number | ColorValue, thickness:number): ImageData | null | undefined {
34
57
  installMethods();
35
58
  if(imageData && quads){
@@ -9,6 +9,13 @@ const DynamsoftMultiCrossFilterModule = isTurboModuleEnabled ?
9
9
  require("./NativeDynamsoftMultiCrossFilterModule").default :
10
10
  NativeModules.DynamsoftMultiCrossFilterModule;
11
11
 
12
+ /**
13
+ * The MultiFrameResultCrossFilter class offers a set of API functions designed for managing and filtering results from multiple image frames,
14
+ * typically used in consecutive frames of a streaming video.
15
+ *
16
+ * @see CapturedResultFilter
17
+ * @see CaptureVisionRouter.addFilter
18
+ * */
12
19
  export class MultiFrameResultCrossFilter implements CapturedResultFilter {
13
20
  filterId = "";
14
21
 
@@ -25,42 +32,128 @@ export class MultiFrameResultCrossFilter implements CapturedResultFilter {
25
32
  DynamsoftMultiCrossFilterModule.destroy(this.filterId)
26
33
  }
27
34
 
35
+ /**
36
+ * Enables or disables the verification of specific result item types.
37
+ * <p>
38
+ * Code snippet:
39
+ * ```
40
+ * let filter = new MultiFrameResultCrossFilter();
41
+ * filter.enableResultCrossVerification(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, true); //enable
42
+ * //...
43
+ * filter.enableResultCrossVerification(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, false); //disable
44
+ * ```
45
+ *
46
+ * @param resultItemTypes - Specifies one or multiple specific result item types.
47
+ * @param enable - Boolean to toggle verification on or off.
48
+ * @see EnumCapturedResultItemType
49
+ * */
28
50
  enableResultCrossVerification(resultItemTypes: EnumCapturedResultItemType | number, enable: boolean) {
29
51
  DynamsoftMultiCrossFilterModule.enableResultCrossVerification(this.filterId, resultItemTypes, enable)
30
52
  }
31
53
 
54
+ /**
55
+ * Checks if verification is active for a given result item type.
56
+ * @param type - Specifies one specific result item type.
57
+ * @return Promise<void> - A promise that resolves a boolean indicating the status of verification for the specified type.
58
+ * */
32
59
  isResultCrossVerificationEnabled(type: EnumCapturedResultItemType | number): Promise<boolean> {
33
60
  return DynamsoftMultiCrossFilterModule.isResultCrossVerificationEnabled(this.filterId, type);
34
61
  }
35
62
 
63
+ /**
64
+ * Enables or disables the deduplication process for one or multiple specific result item types.
65
+ * <p>
66
+ * Code snippet:
67
+ * ```
68
+ * let filter = new MultiFrameResultCrossFilter();
69
+ * filter.enableResultDeduplication(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, true); //enable
70
+ * //...
71
+ * filter.enableResultDeduplication(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, false); //disable
72
+ * ```
73
+ *
74
+ * @param resultItemTypes - Specifies one or multiple specific result item types.
75
+ * @param enable - Boolean to toggle deduplication on or off.
76
+ * @see EnumCapturedResultItemType
77
+ * */
36
78
  enableResultDeduplication(resultItemTypes: EnumCapturedResultItemType | number, enable: boolean) {
37
79
  DynamsoftMultiCrossFilterModule.enableResultDeduplication(this.filterId, resultItemTypes, enable);
38
80
  }
39
81
 
82
+ /**
83
+ * Checks if deduplication is active for a given result item type.
84
+ * @param type - Specifies one specific result item type.
85
+ * @return Promise<boolean> - A promise that resolves a boolean indicating the deduplication status for the specified type.
86
+ * */
40
87
  isResultDeduplicationEnabled(type: EnumCapturedResultItemType | number): Promise<boolean> {
41
88
  return DynamsoftMultiCrossFilterModule.isResultDeduplicationEnabled(this.filterId, type);
42
89
  }
43
90
 
44
- setDuplicateForgetTime(resultItemTypes: EnumCapturedResultItemType | number, time: number) {
45
- DynamsoftMultiCrossFilterModule.setDuplicateForgetTime(this.filterId, resultItemTypes, time);
91
+ /**
92
+ * Sets the interval during which duplicates are disregarded for one or multiple specific result item types.
93
+ *
94
+ * @param types Specifies one or multiple specific result item types.
95
+ * @param time Time in milliseconds during which duplicates are disregarded.
96
+ * */
97
+ setDuplicateForgetTime(types: EnumCapturedResultItemType | number, time: number) {
98
+ DynamsoftMultiCrossFilterModule.setDuplicateForgetTime(this.filterId, types, time);
46
99
  }
47
100
 
101
+ /**
102
+ * Gets the interval during which duplicates are disregarded for a given result item type.
103
+ * @param type Specifies one specific result item type.
104
+ * @return Promise<boolean> - A promise that resolves the maximum overlapping frames count for a given result item type.
105
+ * */
48
106
  getDuplicateForgetTime(type: EnumCapturedResultItemType | number): Promise<number> {
49
107
  return DynamsoftMultiCrossFilterModule.getDuplicateForgetTime(this.filterId, type);
50
108
  }
51
109
 
110
+ /**
111
+ * Enables or disables the to-the-latest overlapping feature of one or multiple specific result item types.
112
+ * <p>
113
+ * Code snippet:
114
+ * ```
115
+ * let filter = new MultiFrameResultCrossFilter();
116
+ * filter.enableLatestOverlapping(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, true); //enable
117
+ * //...
118
+ * filter.enableLatestOverlapping(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, false); //disable
119
+ * ```
120
+ *
121
+ * @param resultItemTypes - Specifies one or multiple specific result item types.
122
+ * @param enable - Boolean to toggle to-the-latest overlapping on or off.
123
+ * @see EnumCapturedResultItemType
124
+ * */
52
125
  enableLatestOverlapping(resultItemTypes: EnumCapturedResultItemType | number, enable: boolean) {
53
126
  return DynamsoftMultiCrossFilterModule.enableLatestOverlapping(this.filterId, resultItemTypes, enable);
54
127
  }
55
128
 
56
- isLatestOverlappingEnabled(resultItemTypes: EnumCapturedResultItemType | number): Promise<boolean> {
57
- return DynamsoftMultiCrossFilterModule.isLatestOverlappingEnabled(this.filterId, resultItemTypes)
129
+ /**
130
+ * Checks if to-the-latest overlapping is active for a given result item type.
131
+ * @param type - Specifies one specific result item type.
132
+ * @return Promise<void> - A promise that resolves a boolean indicating the to-the-latest overlapping status for the specified type.
133
+ * */
134
+ isLatestOverlappingEnabled(type: EnumCapturedResultItemType | number): Promise<boolean> {
135
+ return DynamsoftMultiCrossFilterModule.isLatestOverlappingEnabled(this.filterId, type)
58
136
  }
59
137
 
60
- setMaxOverlappingFrames(resultItemTypes: EnumCapturedResultItemType | number, maxFrameToCheck: number) {
61
- DynamsoftMultiCrossFilterModule.setMaxOverlappingFrames(this.filterId, resultItemTypes, maxFrameToCheck);
138
+ /**
139
+ * Set the maximum overlapping frames count for one or multiple specific result item types.
140
+ * You can set it higher if:
141
+ * - You capture device is stationary or moving stably.
142
+ * - You want to further improve the read-rate.
143
+ *
144
+ * @param types Specifies one or multiple specific result item types.
145
+ * @param maxOverlappingFrames The maximum overlapping frame count for the overlapping.
146
+ * */
147
+ setMaxOverlappingFrames(types: EnumCapturedResultItemType | number, maxOverlappingFrames: number) {
148
+ DynamsoftMultiCrossFilterModule.setMaxOverlappingFrames(this.filterId, types, maxOverlappingFrames);
62
149
  }
63
150
 
151
+ /**
152
+ * Get the maximum overlapping frames count for a given result item type.
153
+ *
154
+ * @param type Specifies a result item type.
155
+ * @return {Promise<number>} A promise that resolves the maximum overlapping frame count for the overlapping..
156
+ * */
64
157
  getMaxOverlappingFrames(type: EnumCapturedResultItemType | number): Promise<number> {
65
158
  return DynamsoftMultiCrossFilterModule.getMaxOverlappingFrames(this.filterId, type);
66
159
  }
@@ -1,4 +0,0 @@
1
- build
2
- .cxx
3
- .idea
4
- .gradle
@@ -1,390 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 689650962CB53B0F001B75FF /* RNDynamsoftMultiCrossFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 689650742CB53B0F001B75FF /* RNDynamsoftMultiCrossFilter.m */; };
11
- 689650972CB53B0F001B75FF /* DSImageData+HostObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6896507D2CB53B0F001B75FF /* DSImageData+HostObject.mm */; };
12
- 689650982CB53B0F001B75FF /* RNDynamsoftImageSourceAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6896507F2CB53B0F001B75FF /* RNDynamsoftImageSourceAdapter.mm */; };
13
- 689650992CB53B0F001B75FF /* RNDynamsoftCameraView.m in Sources */ = {isa = PBXBuildFile; fileRef = 689650812CB53B0F001B75FF /* RNDynamsoftCameraView.m */; };
14
- 6896509A2CB53B0F001B75FF /* RNDynamsoftImageManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 689650822CB53B0F001B75FF /* RNDynamsoftImageManager.mm */; };
15
- 6896509B2CB53B0F001B75FF /* RNDynamsoft+Json.mm in Sources */ = {isa = PBXBuildFile; fileRef = 689650832CB53B0F001B75FF /* RNDynamsoft+Json.mm */; };
16
- 6896509D2CB53B0F001B75FF /* RNDynamsoftImageEditorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 689650862CB53B0F001B75FF /* RNDynamsoftImageEditorView.m */; };
17
- 6896509E2CB53B0F001B75FF /* RNDynamsoftCameraViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 689650872CB53B0F001B75FF /* RNDynamsoftCameraViewManager.m */; };
18
- 6896509F2CB53B0F001B75FF /* YeetJSIUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 689650892CB53B0F001B75FF /* YeetJSIUtils.mm */; };
19
- 689650A02CB53B0F001B75FF /* RNDynamsoftLicense.m in Sources */ = {isa = PBXBuildFile; fileRef = 6896508B2CB53B0F001B75FF /* RNDynamsoftLicense.m */; };
20
- 689650A12CB53B0F001B75FF /* RNDynamsoftCaptureVisionRouter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6896508C2CB53B0F001B75FF /* RNDynamsoftCaptureVisionRouter.mm */; };
21
- 689650A22CB53B0F001B75FF /* RNDynamsoftVersions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6896508D2CB53B0F001B75FF /* RNDynamsoftVersions.m */; };
22
- 689650A32CB53B0F001B75FF /* RNDynamsoftImageEditorViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6896508E2CB53B0F001B75FF /* RNDynamsoftImageEditorViewManager.mm */; };
23
- 689650A42CB53B0F001B75FF /* MutableRawBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 689650912CB53B0F001B75FF /* MutableRawBuffer.cpp */; };
24
- 689650A62CB53B0F001B75FF /* ImageDataHostObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 689650952CB53B0F001B75FF /* ImageDataHostObject.cpp */; };
25
- /* End PBXBuildFile section */
26
-
27
- /* Begin PBXCopyFilesBuildPhase section */
28
- 58B511D91A9E6C8500147676 /* CopyFiles */ = {
29
- isa = PBXCopyFilesBuildPhase;
30
- buildActionMask = 2147483647;
31
- dstPath = "include/$(PRODUCT_NAME)";
32
- dstSubfolderSpec = 16;
33
- files = (
34
- );
35
- runOnlyForDeploymentPostprocessing = 0;
36
- };
37
- /* End PBXCopyFilesBuildPhase section */
38
-
39
- /* Begin PBXFileReference section */
40
- 134814201AA4EA6300B7C361 /* libReactNativeDcv.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libReactNativeDcv.a; sourceTree = BUILT_PRODUCTS_DIR; };
41
- 689650742CB53B0F001B75FF /* RNDynamsoftMultiCrossFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNDynamsoftMultiCrossFilter.m; sourceTree = "<group>"; };
42
- 689650762CB53B0F001B75FF /* RNDynamsoftImageSourceAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftImageSourceAdapter.h; sourceTree = "<group>"; };
43
- 689650772CB53B0F001B75FF /* RNDynamsoftCaptureVisionRouter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftCaptureVisionRouter.h; sourceTree = "<group>"; };
44
- 689650782CB53B0F001B75FF /* RNDynamsoftLicense.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftLicense.h; sourceTree = "<group>"; };
45
- 689650792CB53B0F001B75FF /* RNDynamsoftVersions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftVersions.h; sourceTree = "<group>"; };
46
- 6896507B2CB53B0F001B75FF /* ImageDataHostObject.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ImageDataHostObject.hpp; sourceTree = "<group>"; };
47
- 6896507C2CB53B0F001B75FF /* RNDynamsoftImageEditorViewManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftImageEditorViewManager.h; sourceTree = "<group>"; };
48
- 6896507D2CB53B0F001B75FF /* DSImageData+HostObject.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = "DSImageData+HostObject.mm"; sourceTree = "<group>"; };
49
- 6896507E2CB53B0F001B75FF /* RNDynamsoftCameraViewManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftCameraViewManager.h; sourceTree = "<group>"; };
50
- 6896507F2CB53B0F001B75FF /* RNDynamsoftImageSourceAdapter.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RNDynamsoftImageSourceAdapter.mm; sourceTree = "<group>"; };
51
- 689650802CB53B0F001B75FF /* RNDynamsoftMultiCrossFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftMultiCrossFilter.h; sourceTree = "<group>"; };
52
- 689650812CB53B0F001B75FF /* RNDynamsoftCameraView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNDynamsoftCameraView.m; sourceTree = "<group>"; };
53
- 689650822CB53B0F001B75FF /* RNDynamsoftImageManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RNDynamsoftImageManager.mm; sourceTree = "<group>"; };
54
- 689650832CB53B0F001B75FF /* RNDynamsoft+Json.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = "RNDynamsoft+Json.mm"; sourceTree = "<group>"; };
55
- 689650842CB53B0F001B75FF /* MutableRawBuffer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = MutableRawBuffer.hpp; sourceTree = "<group>"; };
56
- 689650862CB53B0F001B75FF /* RNDynamsoftImageEditorView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNDynamsoftImageEditorView.m; sourceTree = "<group>"; };
57
- 689650872CB53B0F001B75FF /* RNDynamsoftCameraViewManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNDynamsoftCameraViewManager.m; sourceTree = "<group>"; };
58
- 689650882CB53B0F001B75FF /* YeetJSIUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YeetJSIUtils.h; sourceTree = "<group>"; };
59
- 689650892CB53B0F001B75FF /* YeetJSIUtils.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = YeetJSIUtils.mm; sourceTree = "<group>"; };
60
- 6896508A2CB53B0F001B75FF /* RNDynamsoftImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftImageManager.h; sourceTree = "<group>"; };
61
- 6896508B2CB53B0F001B75FF /* RNDynamsoftLicense.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNDynamsoftLicense.m; sourceTree = "<group>"; };
62
- 6896508C2CB53B0F001B75FF /* RNDynamsoftCaptureVisionRouter.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RNDynamsoftCaptureVisionRouter.mm; sourceTree = "<group>"; };
63
- 6896508D2CB53B0F001B75FF /* RNDynamsoftVersions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNDynamsoftVersions.m; sourceTree = "<group>"; };
64
- 6896508E2CB53B0F001B75FF /* RNDynamsoftImageEditorViewManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RNDynamsoftImageEditorViewManager.mm; sourceTree = "<group>"; };
65
- 6896508F2CB53B0F001B75FF /* RNDynamsoftCameraView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftCameraView.h; sourceTree = "<group>"; };
66
- 689650902CB53B0F001B75FF /* RNDynamsoft+Json.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RNDynamsoft+Json.h"; sourceTree = "<group>"; };
67
- 689650912CB53B0F001B75FF /* MutableRawBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MutableRawBuffer.cpp; sourceTree = "<group>"; };
68
- 689650922CB53B0F001B75FF /* DSImageData+HostObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "DSImageData+HostObject.h"; sourceTree = "<group>"; };
69
- 689650932CB53B0F001B75FF /* RNDynamsoftImageEditorView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDynamsoftImageEditorView.h; sourceTree = "<group>"; };
70
- 689650952CB53B0F001B75FF /* ImageDataHostObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ImageDataHostObject.cpp; sourceTree = "<group>"; };
71
- /* End PBXFileReference section */
72
-
73
- /* Begin PBXFrameworksBuildPhase section */
74
- 58B511D81A9E6C8500147676 /* Frameworks */ = {
75
- isa = PBXFrameworksBuildPhase;
76
- buildActionMask = 2147483647;
77
- files = (
78
- );
79
- runOnlyForDeploymentPostprocessing = 0;
80
- };
81
- /* End PBXFrameworksBuildPhase section */
82
-
83
- /* Begin PBXGroup section */
84
- 134814211AA4EA7D00B7C361 /* Products */ = {
85
- isa = PBXGroup;
86
- children = (
87
- 134814201AA4EA6300B7C361 /* libReactNativeDcv.a */,
88
- );
89
- name = Products;
90
- sourceTree = "<group>";
91
- };
92
- 58B511D21A9E6C8500147676 = {
93
- isa = PBXGroup;
94
- children = (
95
- 68AD8F2F2C9C266A005E8BBF /* RNDynamsoftCaptureVision */,
96
- 134814211AA4EA7D00B7C361 /* Products */,
97
- );
98
- sourceTree = "<group>";
99
- };
100
- 68AD8F2F2C9C266A005E8BBF /* RNDynamsoftCaptureVision */ = {
101
- isa = PBXGroup;
102
- children = (
103
- 68CBCCC42CC8E1BA001172E0 /* CPP */,
104
- 6896508F2CB53B0F001B75FF /* RNDynamsoftCameraView.h */,
105
- 689650812CB53B0F001B75FF /* RNDynamsoftCameraView.m */,
106
- 6896507E2CB53B0F001B75FF /* RNDynamsoftCameraViewManager.h */,
107
- 689650872CB53B0F001B75FF /* RNDynamsoftCameraViewManager.m */,
108
- 689650772CB53B0F001B75FF /* RNDynamsoftCaptureVisionRouter.h */,
109
- 6896508C2CB53B0F001B75FF /* RNDynamsoftCaptureVisionRouter.mm */,
110
- 689650932CB53B0F001B75FF /* RNDynamsoftImageEditorView.h */,
111
- 689650862CB53B0F001B75FF /* RNDynamsoftImageEditorView.m */,
112
- 6896507C2CB53B0F001B75FF /* RNDynamsoftImageEditorViewManager.h */,
113
- 6896508E2CB53B0F001B75FF /* RNDynamsoftImageEditorViewManager.mm */,
114
- 689650762CB53B0F001B75FF /* RNDynamsoftImageSourceAdapter.h */,
115
- 6896507F2CB53B0F001B75FF /* RNDynamsoftImageSourceAdapter.mm */,
116
- 689650782CB53B0F001B75FF /* RNDynamsoftLicense.h */,
117
- 6896508B2CB53B0F001B75FF /* RNDynamsoftLicense.m */,
118
- 689650802CB53B0F001B75FF /* RNDynamsoftMultiCrossFilter.h */,
119
- 689650742CB53B0F001B75FF /* RNDynamsoftMultiCrossFilter.m */,
120
- 6896508A2CB53B0F001B75FF /* RNDynamsoftImageManager.h */,
121
- 689650822CB53B0F001B75FF /* RNDynamsoftImageManager.mm */,
122
- 689650792CB53B0F001B75FF /* RNDynamsoftVersions.h */,
123
- 6896508D2CB53B0F001B75FF /* RNDynamsoftVersions.m */,
124
- );
125
- path = RNDynamsoftCaptureVision;
126
- sourceTree = "<group>";
127
- };
128
- 68CBCCC42CC8E1BA001172E0 /* CPP */ = {
129
- isa = PBXGroup;
130
- children = (
131
- 689650922CB53B0F001B75FF /* DSImageData+HostObject.h */,
132
- 6896507D2CB53B0F001B75FF /* DSImageData+HostObject.mm */,
133
- 689650952CB53B0F001B75FF /* ImageDataHostObject.cpp */,
134
- 6896507B2CB53B0F001B75FF /* ImageDataHostObject.hpp */,
135
- 689650912CB53B0F001B75FF /* MutableRawBuffer.cpp */,
136
- 689650842CB53B0F001B75FF /* MutableRawBuffer.hpp */,
137
- 689650902CB53B0F001B75FF /* RNDynamsoft+Json.h */,
138
- 689650832CB53B0F001B75FF /* RNDynamsoft+Json.mm */,
139
- 689650882CB53B0F001B75FF /* YeetJSIUtils.h */,
140
- 689650892CB53B0F001B75FF /* YeetJSIUtils.mm */,
141
- );
142
- path = CPP;
143
- sourceTree = "<group>";
144
- };
145
- /* End PBXGroup section */
146
-
147
- /* Begin PBXNativeTarget section */
148
- 58B511DA1A9E6C8500147676 /* ReactNativeDcv */ = {
149
- isa = PBXNativeTarget;
150
- buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "ReactNativeDcv" */;
151
- buildPhases = (
152
- 58B511D71A9E6C8500147676 /* Sources */,
153
- 58B511D81A9E6C8500147676 /* Frameworks */,
154
- 58B511D91A9E6C8500147676 /* CopyFiles */,
155
- );
156
- buildRules = (
157
- );
158
- dependencies = (
159
- );
160
- name = ReactNativeDcv;
161
- productName = RCTDataManager;
162
- productReference = 134814201AA4EA6300B7C361 /* libReactNativeDcv.a */;
163
- productType = "com.apple.product-type.library.static";
164
- };
165
- /* End PBXNativeTarget section */
166
-
167
- /* Begin PBXProject section */
168
- 58B511D31A9E6C8500147676 /* Project object */ = {
169
- isa = PBXProject;
170
- attributes = {
171
- LastUpgradeCheck = 0920;
172
- ORGANIZATIONNAME = Facebook;
173
- TargetAttributes = {
174
- 58B511DA1A9E6C8500147676 = {
175
- CreatedOnToolsVersion = 6.1.1;
176
- };
177
- };
178
- };
179
- buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "ReactNativeDcv" */;
180
- compatibilityVersion = "Xcode 3.2";
181
- developmentRegion = en;
182
- hasScannedForEncodings = 0;
183
- knownRegions = (
184
- en,
185
- Base,
186
- );
187
- mainGroup = 58B511D21A9E6C8500147676;
188
- productRefGroup = 58B511D21A9E6C8500147676;
189
- projectDirPath = "";
190
- projectRoot = "";
191
- targets = (
192
- 58B511DA1A9E6C8500147676 /* ReactNativeDcv */,
193
- );
194
- };
195
- /* End PBXProject section */
196
-
197
- /* Begin PBXSourcesBuildPhase section */
198
- 58B511D71A9E6C8500147676 /* Sources */ = {
199
- isa = PBXSourcesBuildPhase;
200
- buildActionMask = 2147483647;
201
- files = (
202
- 689650982CB53B0F001B75FF /* RNDynamsoftImageSourceAdapter.mm in Sources */,
203
- 689650A12CB53B0F001B75FF /* RNDynamsoftCaptureVisionRouter.mm in Sources */,
204
- 689650A42CB53B0F001B75FF /* MutableRawBuffer.cpp in Sources */,
205
- 6896509D2CB53B0F001B75FF /* RNDynamsoftImageEditorView.m in Sources */,
206
- 689650962CB53B0F001B75FF /* RNDynamsoftMultiCrossFilter.m in Sources */,
207
- 6896509A2CB53B0F001B75FF /* RNDynamsoftImageManager.mm in Sources */,
208
- 689650A02CB53B0F001B75FF /* RNDynamsoftLicense.m in Sources */,
209
- 689650A32CB53B0F001B75FF /* RNDynamsoftImageEditorViewManager.mm in Sources */,
210
- 6896509B2CB53B0F001B75FF /* RNDynamsoft+Json.mm in Sources */,
211
- 689650972CB53B0F001B75FF /* DSImageData+HostObject.mm in Sources */,
212
- 689650A22CB53B0F001B75FF /* RNDynamsoftVersions.m in Sources */,
213
- 6896509F2CB53B0F001B75FF /* YeetJSIUtils.mm in Sources */,
214
- 689650A62CB53B0F001B75FF /* ImageDataHostObject.cpp in Sources */,
215
- 689650992CB53B0F001B75FF /* RNDynamsoftCameraView.m in Sources */,
216
- 6896509E2CB53B0F001B75FF /* RNDynamsoftCameraViewManager.m in Sources */,
217
- );
218
- runOnlyForDeploymentPostprocessing = 0;
219
- };
220
- /* End PBXSourcesBuildPhase section */
221
-
222
- /* Begin XCBuildConfiguration section */
223
- 58B511ED1A9E6C8500147676 /* Debug */ = {
224
- isa = XCBuildConfiguration;
225
- buildSettings = {
226
- ALWAYS_SEARCH_USER_PATHS = NO;
227
- CLANG_ANALYZER_NONNULL = YES;
228
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
229
- CLANG_CXX_LIBRARY = "libc++";
230
- CLANG_ENABLE_MODULES = YES;
231
- CLANG_ENABLE_OBJC_ARC = YES;
232
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
233
- CLANG_WARN_BOOL_CONVERSION = YES;
234
- CLANG_WARN_COMMA = YES;
235
- CLANG_WARN_CONSTANT_CONVERSION = YES;
236
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
237
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
238
- CLANG_WARN_EMPTY_BODY = YES;
239
- CLANG_WARN_ENUM_CONVERSION = YES;
240
- CLANG_WARN_INFINITE_RECURSION = YES;
241
- CLANG_WARN_INT_CONVERSION = YES;
242
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
243
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
244
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
245
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
246
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
247
- CLANG_WARN_STRICT_PROTOTYPES = YES;
248
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
249
- CLANG_WARN_UNREACHABLE_CODE = YES;
250
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
251
- COPY_PHASE_STRIP = NO;
252
- ENABLE_STRICT_OBJC_MSGSEND = YES;
253
- ENABLE_TESTABILITY = YES;
254
- GCC_C_LANGUAGE_STANDARD = gnu99;
255
- GCC_DYNAMIC_NO_PIC = NO;
256
- GCC_NO_COMMON_BLOCKS = YES;
257
- GCC_OPTIMIZATION_LEVEL = 0;
258
- GCC_PREPROCESSOR_DEFINITIONS = (
259
- "DEBUG=1",
260
- "$(inherited)",
261
- );
262
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
263
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
264
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
265
- GCC_WARN_UNDECLARED_SELECTOR = YES;
266
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
267
- GCC_WARN_UNUSED_FUNCTION = YES;
268
- GCC_WARN_UNUSED_VARIABLE = YES;
269
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
270
- LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
271
- LIBRARY_SEARCH_PATHS = (
272
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
273
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
274
- "\"$(inherited)\"",
275
- );
276
- MTL_ENABLE_DEBUG_INFO = YES;
277
- ONLY_ACTIVE_ARCH = YES;
278
- SDKROOT = iphoneos;
279
- };
280
- name = Debug;
281
- };
282
- 58B511EE1A9E6C8500147676 /* Release */ = {
283
- isa = XCBuildConfiguration;
284
- buildSettings = {
285
- ALWAYS_SEARCH_USER_PATHS = NO;
286
- CLANG_ANALYZER_NONNULL = YES;
287
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
288
- CLANG_CXX_LIBRARY = "libc++";
289
- CLANG_ENABLE_MODULES = YES;
290
- CLANG_ENABLE_OBJC_ARC = YES;
291
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
292
- CLANG_WARN_BOOL_CONVERSION = YES;
293
- CLANG_WARN_COMMA = YES;
294
- CLANG_WARN_CONSTANT_CONVERSION = YES;
295
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
296
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
297
- CLANG_WARN_EMPTY_BODY = YES;
298
- CLANG_WARN_ENUM_CONVERSION = YES;
299
- CLANG_WARN_INFINITE_RECURSION = YES;
300
- CLANG_WARN_INT_CONVERSION = YES;
301
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
302
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
303
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
304
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
305
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
306
- CLANG_WARN_STRICT_PROTOTYPES = YES;
307
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
308
- CLANG_WARN_UNREACHABLE_CODE = YES;
309
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
310
- COPY_PHASE_STRIP = YES;
311
- ENABLE_NS_ASSERTIONS = NO;
312
- ENABLE_STRICT_OBJC_MSGSEND = YES;
313
- GCC_C_LANGUAGE_STANDARD = gnu99;
314
- GCC_NO_COMMON_BLOCKS = YES;
315
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
316
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
317
- GCC_WARN_UNDECLARED_SELECTOR = YES;
318
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
319
- GCC_WARN_UNUSED_FUNCTION = YES;
320
- GCC_WARN_UNUSED_VARIABLE = YES;
321
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
322
- LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
323
- LIBRARY_SEARCH_PATHS = (
324
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
325
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
326
- "\"$(inherited)\"",
327
- );
328
- MTL_ENABLE_DEBUG_INFO = NO;
329
- SDKROOT = iphoneos;
330
- VALIDATE_PRODUCT = YES;
331
- };
332
- name = Release;
333
- };
334
- 58B511F01A9E6C8500147676 /* Debug */ = {
335
- isa = XCBuildConfiguration;
336
- buildSettings = {
337
- HEADER_SEARCH_PATHS = (
338
- "$(inherited)",
339
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
340
- "$(SRCROOT)/../../../React/**",
341
- "$(SRCROOT)/../../react-native/React/**",
342
- );
343
- LIBRARY_SEARCH_PATHS = "$(inherited)";
344
- OTHER_LDFLAGS = "-ObjC";
345
- PRODUCT_NAME = ReactNativeDcv;
346
- SKIP_INSTALL = YES;
347
- };
348
- name = Debug;
349
- };
350
- 58B511F11A9E6C8500147676 /* Release */ = {
351
- isa = XCBuildConfiguration;
352
- buildSettings = {
353
- HEADER_SEARCH_PATHS = (
354
- "$(inherited)",
355
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
356
- "$(SRCROOT)/../../../React/**",
357
- "$(SRCROOT)/../../react-native/React/**",
358
- );
359
- LIBRARY_SEARCH_PATHS = "$(inherited)";
360
- OTHER_LDFLAGS = "-ObjC";
361
- PRODUCT_NAME = ReactNativeDcv;
362
- SKIP_INSTALL = YES;
363
- };
364
- name = Release;
365
- };
366
- /* End XCBuildConfiguration section */
367
-
368
- /* Begin XCConfigurationList section */
369
- 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "ReactNativeDcv" */ = {
370
- isa = XCConfigurationList;
371
- buildConfigurations = (
372
- 58B511ED1A9E6C8500147676 /* Debug */,
373
- 58B511EE1A9E6C8500147676 /* Release */,
374
- );
375
- defaultConfigurationIsVisible = 0;
376
- defaultConfigurationName = Release;
377
- };
378
- 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "ReactNativeDcv" */ = {
379
- isa = XCConfigurationList;
380
- buildConfigurations = (
381
- 58B511F01A9E6C8500147676 /* Debug */,
382
- 58B511F11A9E6C8500147676 /* Release */,
383
- );
384
- defaultConfigurationIsVisible = 0;
385
- defaultConfigurationName = Release;
386
- };
387
- /* End XCConfigurationList section */
388
- };
389
- rootObject = 58B511D31A9E6C8500147676 /* Project object */;
390
- }