@regulaforensics/react-native-document-reader-api 5.8.1 → 6.1.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.
- package/README.md +1 -1
- package/RNDocumentReaderApi.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/src/main/java/com/regula/documentreader/Helpers.java +1 -3
- package/android/src/main/java/com/regula/documentreader/JSONConstructor.java +110 -10
- package/android/src/main/java/com/regula/documentreader/RNRegulaDocumentReaderModule.java +8 -12
- package/android/src/main/java/com/regula/documentreader/RegulaConfig.java +3 -0
- package/example/.editorconfig +3 -0
- package/example/.flowconfig +4 -13
- package/example/.gitattributes +3 -1
- package/example/.prettierrc.js +1 -0
- package/example/App.js +30 -18
- package/example/android/app/BUCK +55 -0
- package/example/android/app/build.gradle +35 -17
- package/example/android/app/debug.keystore +0 -0
- package/example/android/app/src/debug/AndroidManifest.xml +6 -1
- package/example/android/app/src/main/AndroidManifest.xml +21 -22
- package/example/android/app/src/main/assets/index.android.bundle +636 -0
- package/example/android/app/src/main/java/com/regula/dr/fullrfid/MainApplication.java +1 -2
- package/example/android/app/src/main/res/drawable-mdpi/images_id.png +0 -0
- package/example/android/app/src/main/res/drawable-mdpi/images_portrait.png +0 -0
- package/example/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecheckbox_img_ic_check_box.png +0 -0
- package/example/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png +0 -0
- package/example/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecheckbox_img_ic_indeterminate_check_box.png +0 -0
- package/example/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativecheckbox_img_ic_check_box.png +0 -0
- package/example/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png +0 -0
- package/example/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativecheckbox_img_ic_check_box.png +0 -0
- package/example/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png +0 -0
- package/example/android/build.gradle +12 -6
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/example/android/gradle.properties +2 -1
- package/example/android/gradlew +14 -17
- package/example/android/gradlew.bat +7 -18
- package/example/android/settings.gradle +0 -2
- package/example/ios/DocumentReader/AppDelegate.m +7 -3
- package/example/ios/DocumentReader/Info.plist +8 -10
- package/example/ios/DocumentReader/LaunchScreen.storyboard +47 -0
- package/example/ios/DocumentReader.xcodeproj/project.pbxproj +257 -96
- package/example/ios/DocumentReader.xcodeproj/xcshareddata/xcschemes/DocumentReader.xcscheme +1 -1
- package/example/ios/DocumentReaderTests/DocumentReaderTests.m +65 -0
- package/example/ios/DocumentReaderTests/Info.plist +24 -0
- package/example/ios/Podfile +13 -4
- package/example/metro.config.js +1 -1
- package/example/package.json +17 -18
- package/index.d.ts +713 -514
- package/index.js +661 -510
- package/ios/RGLWJSONConstructor.h +6 -0
- package/ios/RGLWJSONConstructor.m +92 -0
- package/ios/RNRegulaDocumentReader.m +5 -5
- package/ios/RegulaConfig.m +3 -0
- package/package.json +1 -1
- package/example/ios/DocumentReader.xcodeproj/xcshareddata/xcschemes/DocumentReader-tvOS.xcscheme +0 -88
|
@@ -3,55 +3,66 @@
|
|
|
3
3
|
archiveVersion = 1;
|
|
4
4
|
classes = {
|
|
5
5
|
};
|
|
6
|
-
objectVersion =
|
|
6
|
+
objectVersion = 54;
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
10
|
+
00E356F31AD99517003FC87E /* DocumentReaderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* DocumentReaderTests.m */; };
|
|
10
11
|
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
|
|
11
|
-
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
|
|
12
12
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
13
13
|
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
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 */; };
|
|
17
18
|
/* End PBXBuildFile section */
|
|
18
19
|
|
|
20
|
+
/* Begin PBXContainerItemProxy section */
|
|
21
|
+
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
|
|
22
|
+
isa = PBXContainerItemProxy;
|
|
23
|
+
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
24
|
+
proxyType = 1;
|
|
25
|
+
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
|
26
|
+
remoteInfo = DocumentReader;
|
|
27
|
+
};
|
|
28
|
+
/* End PBXContainerItemProxy section */
|
|
29
|
+
|
|
19
30
|
/* Begin PBXFileReference section */
|
|
20
|
-
|
|
31
|
+
00E356EE1AD99517003FC87E /* DocumentReaderTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DocumentReaderTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
21
32
|
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
22
33
|
00E356F21AD99517003FC87E /* DocumentReaderTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DocumentReaderTests.m; sourceTree = "<group>"; };
|
|
23
|
-
0145A2B1CB807C8C6B226E76 /* Pods-DocumentReader-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-DocumentReader-tvOSTests/Pods-DocumentReader-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
24
|
-
06AC40DEA0D7AC28B59706A1 /* Pods-DocumentReader-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader-tvOS.release.xcconfig"; path = "Target Support Files/Pods-DocumentReader-tvOS/Pods-DocumentReader-tvOS.release.xcconfig"; sourceTree = "<group>"; };
|
|
25
34
|
13B07F961A680F5B00A75B9A /* DocumentReader.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DocumentReader.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
26
35
|
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = DocumentReader/AppDelegate.h; sourceTree = "<group>"; };
|
|
27
36
|
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = DocumentReader/AppDelegate.m; sourceTree = "<group>"; };
|
|
28
|
-
13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
|
|
29
37
|
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = DocumentReader/Images.xcassets; sourceTree = "<group>"; };
|
|
30
38
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = DocumentReader/Info.plist; sourceTree = "<group>"; };
|
|
31
39
|
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = DocumentReader/main.m; sourceTree = "<group>"; };
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
B58D0E1DCFBA929CF939112F /* libPods-DocumentReader-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DocumentReader-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
42
|
-
C3FD0F172562BF5E001B889B /* certificates */ = {isa = PBXFileReference; lastKnownFileType = folder; name = certificates; path = ../android/app/src/main/assets/certificates; sourceTree = "<group>"; };
|
|
43
|
-
CBB2AD237E203DBCC9F660CE /* libPods-DocumentReader-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DocumentReader-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
44
|
-
D32550F4BF52B1BA21EE8905 /* Pods-DocumentReader-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DocumentReader-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-DocumentReader-tvOS/Pods-DocumentReader-tvOS.debug.xcconfig"; 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>"; };
|
|
44
|
+
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>"; };
|
|
45
49
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
46
|
-
ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
|
|
47
50
|
/* End PBXFileReference section */
|
|
48
51
|
|
|
49
52
|
/* Begin PBXFrameworksBuildPhase section */
|
|
53
|
+
00E356EB1AD99517003FC87E /* Frameworks */ = {
|
|
54
|
+
isa = PBXFrameworksBuildPhase;
|
|
55
|
+
buildActionMask = 2147483647;
|
|
56
|
+
files = (
|
|
57
|
+
E7DBFE61855F7D0B4758857F /* libPods-DocumentReader-DocumentReaderTests.a in Frameworks */,
|
|
58
|
+
);
|
|
59
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
60
|
+
};
|
|
50
61
|
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
51
62
|
isa = PBXFrameworksBuildPhase;
|
|
52
63
|
buildActionMask = 2147483647;
|
|
53
64
|
files = (
|
|
54
|
-
|
|
65
|
+
F3DA0BB7E58031D2DAB5EB63 /* libPods-DocumentReader.a in Frameworks */,
|
|
55
66
|
);
|
|
56
67
|
runOnlyForDeploymentPostprocessing = 0;
|
|
57
68
|
};
|
|
@@ -78,15 +89,13 @@
|
|
|
78
89
|
13B07FAE1A68108700A75B9A /* DocumentReader */ = {
|
|
79
90
|
isa = PBXGroup;
|
|
80
91
|
children = (
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
7AADEF0224614713002B84E1 /* DocumentReader.entitlements */,
|
|
84
|
-
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
|
|
92
|
+
8C80FC0A27356FF500CAD407 /* regula.license */,
|
|
93
|
+
8C80FC0927356EE800CAD407 /* DocumentReader.entitlements */,
|
|
85
94
|
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
86
95
|
13B07FB01A68108700A75B9A /* AppDelegate.m */,
|
|
87
96
|
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
88
97
|
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
89
|
-
|
|
98
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
90
99
|
13B07FB71A68108700A75B9A /* main.m */,
|
|
91
100
|
);
|
|
92
101
|
name = DocumentReader;
|
|
@@ -96,26 +105,19 @@
|
|
|
96
105
|
isa = PBXGroup;
|
|
97
106
|
children = (
|
|
98
107
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
61210B94F20C3636A9728A73 /* libPods-DocumentReader-DocumentReaderTests.a */,
|
|
102
|
-
CBB2AD237E203DBCC9F660CE /* libPods-DocumentReader-tvOS.a */,
|
|
103
|
-
B58D0E1DCFBA929CF939112F /* libPods-DocumentReader-tvOSTests.a */,
|
|
108
|
+
1F969B96D45C2B9D3254B2C2 /* libPods-DocumentReader.a */,
|
|
109
|
+
8857AD499E067931F1E9EEFA /* libPods-DocumentReader-DocumentReaderTests.a */,
|
|
104
110
|
);
|
|
105
111
|
name = Frameworks;
|
|
106
112
|
sourceTree = "<group>";
|
|
107
113
|
};
|
|
108
|
-
|
|
114
|
+
6DB3F4A4B76CE559B39EF629 /* Pods */ = {
|
|
109
115
|
isa = PBXGroup;
|
|
110
116
|
children = (
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
D32550F4BF52B1BA21EE8905 /* Pods-DocumentReader-tvOS.debug.xcconfig */,
|
|
116
|
-
06AC40DEA0D7AC28B59706A1 /* Pods-DocumentReader-tvOS.release.xcconfig */,
|
|
117
|
-
7A5C433BAC74BD80D93F2856 /* Pods-DocumentReader-tvOSTests.debug.xcconfig */,
|
|
118
|
-
0145A2B1CB807C8C6B226E76 /* Pods-DocumentReader-tvOSTests.release.xcconfig */,
|
|
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 */,
|
|
119
121
|
);
|
|
120
122
|
path = Pods;
|
|
121
123
|
sourceTree = "<group>";
|
|
@@ -135,7 +137,7 @@
|
|
|
135
137
|
00E356EF1AD99517003FC87E /* DocumentReaderTests */,
|
|
136
138
|
83CBBA001A601CBA00E9B192 /* Products */,
|
|
137
139
|
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
138
|
-
|
|
140
|
+
6DB3F4A4B76CE559B39EF629 /* Pods */,
|
|
139
141
|
);
|
|
140
142
|
indentWidth = 2;
|
|
141
143
|
sourceTree = "<group>";
|
|
@@ -146,6 +148,7 @@
|
|
|
146
148
|
isa = PBXGroup;
|
|
147
149
|
children = (
|
|
148
150
|
13B07F961A680F5B00A75B9A /* DocumentReader.app */,
|
|
151
|
+
00E356EE1AD99517003FC87E /* DocumentReaderTests.xctest */,
|
|
149
152
|
);
|
|
150
153
|
name = Products;
|
|
151
154
|
sourceTree = "<group>";
|
|
@@ -153,18 +156,39 @@
|
|
|
153
156
|
/* End PBXGroup section */
|
|
154
157
|
|
|
155
158
|
/* Begin PBXNativeTarget section */
|
|
159
|
+
00E356ED1AD99517003FC87E /* DocumentReaderTests */ = {
|
|
160
|
+
isa = PBXNativeTarget;
|
|
161
|
+
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "DocumentReaderTests" */;
|
|
162
|
+
buildPhases = (
|
|
163
|
+
BD5AF7ABF1D3332E5DC46072 /* [CP] Check Pods Manifest.lock */,
|
|
164
|
+
00E356EA1AD99517003FC87E /* Sources */,
|
|
165
|
+
00E356EB1AD99517003FC87E /* Frameworks */,
|
|
166
|
+
00E356EC1AD99517003FC87E /* Resources */,
|
|
167
|
+
6AE374FA5B16E9D691751A9F /* [CP] Embed Pods Frameworks */,
|
|
168
|
+
A25463FA1541B473A18BD09D /* [CP] Copy Pods Resources */,
|
|
169
|
+
);
|
|
170
|
+
buildRules = (
|
|
171
|
+
);
|
|
172
|
+
dependencies = (
|
|
173
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */,
|
|
174
|
+
);
|
|
175
|
+
name = DocumentReaderTests;
|
|
176
|
+
productName = DocumentReaderTests;
|
|
177
|
+
productReference = 00E356EE1AD99517003FC87E /* DocumentReaderTests.xctest */;
|
|
178
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
179
|
+
};
|
|
156
180
|
13B07F861A680F5B00A75B9A /* DocumentReader */ = {
|
|
157
181
|
isa = PBXNativeTarget;
|
|
158
182
|
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DocumentReader" */;
|
|
159
183
|
buildPhases = (
|
|
160
|
-
|
|
184
|
+
C3082C15116FB040A503764F /* [CP] Check Pods Manifest.lock */,
|
|
161
185
|
FD10A7F022414F080027D42C /* Start Packager */,
|
|
162
186
|
13B07F871A680F5B00A75B9A /* Sources */,
|
|
163
187
|
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
164
188
|
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
165
189
|
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
166
|
-
|
|
167
|
-
|
|
190
|
+
E692B304473B4A747056BD4F /* [CP] Embed Pods Frameworks */,
|
|
191
|
+
AE6CCD5DF07545FB3D764CEA /* [CP] Copy Pods Resources */,
|
|
168
192
|
);
|
|
169
193
|
buildRules = (
|
|
170
194
|
);
|
|
@@ -181,15 +205,19 @@
|
|
|
181
205
|
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
182
206
|
isa = PBXProject;
|
|
183
207
|
attributes = {
|
|
184
|
-
LastUpgradeCheck =
|
|
208
|
+
LastUpgradeCheck = 1210;
|
|
185
209
|
TargetAttributes = {
|
|
210
|
+
00E356ED1AD99517003FC87E = {
|
|
211
|
+
CreatedOnToolsVersion = 6.2;
|
|
212
|
+
TestTargetID = 13B07F861A680F5B00A75B9A;
|
|
213
|
+
};
|
|
186
214
|
13B07F861A680F5B00A75B9A = {
|
|
187
215
|
LastSwiftMigration = 1120;
|
|
188
216
|
};
|
|
189
217
|
};
|
|
190
218
|
};
|
|
191
219
|
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "DocumentReader" */;
|
|
192
|
-
compatibilityVersion = "Xcode
|
|
220
|
+
compatibilityVersion = "Xcode 12.0";
|
|
193
221
|
developmentRegion = en;
|
|
194
222
|
hasScannedForEncodings = 0;
|
|
195
223
|
knownRegions = (
|
|
@@ -202,19 +230,26 @@
|
|
|
202
230
|
projectRoot = "";
|
|
203
231
|
targets = (
|
|
204
232
|
13B07F861A680F5B00A75B9A /* DocumentReader */,
|
|
233
|
+
00E356ED1AD99517003FC87E /* DocumentReaderTests */,
|
|
205
234
|
);
|
|
206
235
|
};
|
|
207
236
|
/* End PBXProject section */
|
|
208
237
|
|
|
209
238
|
/* Begin PBXResourcesBuildPhase section */
|
|
239
|
+
00E356EC1AD99517003FC87E /* Resources */ = {
|
|
240
|
+
isa = PBXResourcesBuildPhase;
|
|
241
|
+
buildActionMask = 2147483647;
|
|
242
|
+
files = (
|
|
243
|
+
);
|
|
244
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
245
|
+
};
|
|
210
246
|
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
211
247
|
isa = PBXResourcesBuildPhase;
|
|
212
248
|
buildActionMask = 2147483647;
|
|
213
249
|
files = (
|
|
250
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
214
251
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
215
|
-
|
|
216
|
-
7AFCB96C24614DED001ADC8C /* regula.license in Resources */,
|
|
217
|
-
C3FD0F182562BF5E001B889B /* certificates in Resources */,
|
|
252
|
+
8C80FC0B27356FF500CAD407 /* regula.license in Resources */,
|
|
218
253
|
);
|
|
219
254
|
runOnlyForDeploymentPostprocessing = 0;
|
|
220
255
|
};
|
|
@@ -233,9 +268,60 @@
|
|
|
233
268
|
);
|
|
234
269
|
runOnlyForDeploymentPostprocessing = 0;
|
|
235
270
|
shellPath = /bin/sh;
|
|
236
|
-
shellScript = "
|
|
271
|
+
shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
|
|
272
|
+
};
|
|
273
|
+
6AE374FA5B16E9D691751A9F /* [CP] Embed Pods Frameworks */ = {
|
|
274
|
+
isa = PBXShellScriptBuildPhase;
|
|
275
|
+
buildActionMask = 2147483647;
|
|
276
|
+
files = (
|
|
277
|
+
);
|
|
278
|
+
inputFileListPaths = (
|
|
279
|
+
"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
280
|
+
);
|
|
281
|
+
name = "[CP] Embed Pods Frameworks";
|
|
282
|
+
outputFileListPaths = (
|
|
283
|
+
"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
284
|
+
);
|
|
285
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
286
|
+
shellPath = /bin/sh;
|
|
287
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-frameworks.sh\"\n";
|
|
288
|
+
showEnvVarsInLog = 0;
|
|
289
|
+
};
|
|
290
|
+
A25463FA1541B473A18BD09D /* [CP] Copy Pods Resources */ = {
|
|
291
|
+
isa = PBXShellScriptBuildPhase;
|
|
292
|
+
buildActionMask = 2147483647;
|
|
293
|
+
files = (
|
|
294
|
+
);
|
|
295
|
+
inputFileListPaths = (
|
|
296
|
+
"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
297
|
+
);
|
|
298
|
+
name = "[CP] Copy Pods Resources";
|
|
299
|
+
outputFileListPaths = (
|
|
300
|
+
"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
301
|
+
);
|
|
302
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
303
|
+
shellPath = /bin/sh;
|
|
304
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader-DocumentReaderTests/Pods-DocumentReader-DocumentReaderTests-resources.sh\"\n";
|
|
305
|
+
showEnvVarsInLog = 0;
|
|
306
|
+
};
|
|
307
|
+
AE6CCD5DF07545FB3D764CEA /* [CP] Copy Pods Resources */ = {
|
|
308
|
+
isa = PBXShellScriptBuildPhase;
|
|
309
|
+
buildActionMask = 2147483647;
|
|
310
|
+
files = (
|
|
311
|
+
);
|
|
312
|
+
inputFileListPaths = (
|
|
313
|
+
"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
314
|
+
);
|
|
315
|
+
name = "[CP] Copy Pods Resources";
|
|
316
|
+
outputFileListPaths = (
|
|
317
|
+
"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
318
|
+
);
|
|
319
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
320
|
+
shellPath = /bin/sh;
|
|
321
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-resources.sh\"\n";
|
|
322
|
+
showEnvVarsInLog = 0;
|
|
237
323
|
};
|
|
238
|
-
|
|
324
|
+
BD5AF7ABF1D3332E5DC46072 /* [CP] Check Pods Manifest.lock */ = {
|
|
239
325
|
isa = PBXShellScriptBuildPhase;
|
|
240
326
|
buildActionMask = 2147483647;
|
|
241
327
|
files = (
|
|
@@ -250,53 +336,50 @@
|
|
|
250
336
|
outputFileListPaths = (
|
|
251
337
|
);
|
|
252
338
|
outputPaths = (
|
|
253
|
-
"$(DERIVED_FILE_DIR)/Pods-DocumentReader-checkManifestLockResult.txt",
|
|
339
|
+
"$(DERIVED_FILE_DIR)/Pods-DocumentReader-DocumentReaderTests-checkManifestLockResult.txt",
|
|
254
340
|
);
|
|
255
341
|
runOnlyForDeploymentPostprocessing = 0;
|
|
256
342
|
shellPath = /bin/sh;
|
|
257
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";
|
|
258
344
|
showEnvVarsInLog = 0;
|
|
259
345
|
};
|
|
260
|
-
|
|
346
|
+
C3082C15116FB040A503764F /* [CP] Check Pods Manifest.lock */ = {
|
|
261
347
|
isa = PBXShellScriptBuildPhase;
|
|
262
348
|
buildActionMask = 2147483647;
|
|
263
349
|
files = (
|
|
264
350
|
);
|
|
351
|
+
inputFileListPaths = (
|
|
352
|
+
);
|
|
265
353
|
inputPaths = (
|
|
266
|
-
"${
|
|
267
|
-
"${PODS_ROOT}/
|
|
268
|
-
|
|
269
|
-
|
|
354
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
355
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
356
|
+
);
|
|
357
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
358
|
+
outputFileListPaths = (
|
|
270
359
|
);
|
|
271
|
-
name = "[CP] Embed Pods Frameworks";
|
|
272
360
|
outputPaths = (
|
|
273
|
-
"$
|
|
274
|
-
"${DWARF_DSYM_FOLDER_PATH}/DocumentReader.framework.dSYM",
|
|
275
|
-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DocumentReaderCore.framework",
|
|
361
|
+
"$(DERIVED_FILE_DIR)/Pods-DocumentReader-checkManifestLockResult.txt",
|
|
276
362
|
);
|
|
277
363
|
runOnlyForDeploymentPostprocessing = 0;
|
|
278
364
|
shellPath = /bin/sh;
|
|
279
|
-
shellScript = "\"${PODS_ROOT}/
|
|
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";
|
|
280
366
|
showEnvVarsInLog = 0;
|
|
281
367
|
};
|
|
282
|
-
|
|
368
|
+
E692B304473B4A747056BD4F /* [CP] Embed Pods Frameworks */ = {
|
|
283
369
|
isa = PBXShellScriptBuildPhase;
|
|
284
370
|
buildActionMask = 2147483647;
|
|
285
371
|
files = (
|
|
286
372
|
);
|
|
287
|
-
|
|
288
|
-
"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-
|
|
289
|
-
"${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController/QBImagePicker.bundle",
|
|
290
|
-
"${PODS_ROOT}/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle",
|
|
373
|
+
inputFileListPaths = (
|
|
374
|
+
"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
291
375
|
);
|
|
292
|
-
name = "[CP]
|
|
293
|
-
|
|
294
|
-
"${
|
|
295
|
-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSKImageCropperStrings.bundle",
|
|
376
|
+
name = "[CP] Embed Pods Frameworks";
|
|
377
|
+
outputFileListPaths = (
|
|
378
|
+
"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
296
379
|
);
|
|
297
380
|
runOnlyForDeploymentPostprocessing = 0;
|
|
298
381
|
shellPath = /bin/sh;
|
|
299
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-
|
|
382
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocumentReader/Pods-DocumentReader-frameworks.sh\"\n";
|
|
300
383
|
showEnvVarsInLog = 0;
|
|
301
384
|
};
|
|
302
385
|
FD10A7F022414F080027D42C /* Start Packager */ = {
|
|
@@ -321,6 +404,14 @@
|
|
|
321
404
|
/* End PBXShellScriptBuildPhase section */
|
|
322
405
|
|
|
323
406
|
/* Begin PBXSourcesBuildPhase section */
|
|
407
|
+
00E356EA1AD99517003FC87E /* Sources */ = {
|
|
408
|
+
isa = PBXSourcesBuildPhase;
|
|
409
|
+
buildActionMask = 2147483647;
|
|
410
|
+
files = (
|
|
411
|
+
00E356F31AD99517003FC87E /* DocumentReaderTests.m in Sources */,
|
|
412
|
+
);
|
|
413
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
414
|
+
};
|
|
324
415
|
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
325
416
|
isa = PBXSourcesBuildPhase;
|
|
326
417
|
buildActionMask = 2147483647;
|
|
@@ -332,22 +423,69 @@
|
|
|
332
423
|
};
|
|
333
424
|
/* End PBXSourcesBuildPhase section */
|
|
334
425
|
|
|
335
|
-
/* Begin
|
|
336
|
-
|
|
337
|
-
isa =
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
);
|
|
341
|
-
name = LaunchScreen.xib;
|
|
342
|
-
path = DocumentReader;
|
|
343
|
-
sourceTree = "<group>";
|
|
426
|
+
/* Begin PBXTargetDependency section */
|
|
427
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
|
428
|
+
isa = PBXTargetDependency;
|
|
429
|
+
target = 13B07F861A680F5B00A75B9A /* DocumentReader */;
|
|
430
|
+
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
|
344
431
|
};
|
|
345
|
-
/* End
|
|
432
|
+
/* End PBXTargetDependency section */
|
|
346
433
|
|
|
347
434
|
/* Begin XCBuildConfiguration section */
|
|
435
|
+
00E356F61AD99517003FC87E /* Debug */ = {
|
|
436
|
+
isa = XCBuildConfiguration;
|
|
437
|
+
baseConfigurationReference = 2442BDF33A526178CA02CD8B /* Pods-DocumentReader-DocumentReaderTests.debug.xcconfig */;
|
|
438
|
+
buildSettings = {
|
|
439
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
440
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
441
|
+
"DEBUG=1",
|
|
442
|
+
"$(inherited)",
|
|
443
|
+
);
|
|
444
|
+
INFOPLIST_FILE = DocumentReaderTests/Info.plist;
|
|
445
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
446
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
447
|
+
"$(inherited)",
|
|
448
|
+
"@executable_path/Frameworks",
|
|
449
|
+
"@loader_path/Frameworks",
|
|
450
|
+
);
|
|
451
|
+
OTHER_LDFLAGS = (
|
|
452
|
+
"-ObjC",
|
|
453
|
+
"-lc++",
|
|
454
|
+
"$(inherited)",
|
|
455
|
+
);
|
|
456
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
457
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
458
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DocumentReader.app/DocumentReader";
|
|
459
|
+
};
|
|
460
|
+
name = Debug;
|
|
461
|
+
};
|
|
462
|
+
00E356F71AD99517003FC87E /* Release */ = {
|
|
463
|
+
isa = XCBuildConfiguration;
|
|
464
|
+
baseConfigurationReference = 7DC59113504F5441D852472F /* Pods-DocumentReader-DocumentReaderTests.release.xcconfig */;
|
|
465
|
+
buildSettings = {
|
|
466
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
467
|
+
COPY_PHASE_STRIP = NO;
|
|
468
|
+
INFOPLIST_FILE = DocumentReaderTests/Info.plist;
|
|
469
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
470
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
471
|
+
"$(inherited)",
|
|
472
|
+
"@executable_path/Frameworks",
|
|
473
|
+
"@loader_path/Frameworks",
|
|
474
|
+
);
|
|
475
|
+
OTHER_LDFLAGS = (
|
|
476
|
+
"-ObjC",
|
|
477
|
+
"-lc++",
|
|
478
|
+
"$(inherited)",
|
|
479
|
+
);
|
|
480
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
481
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
482
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DocumentReader.app/DocumentReader";
|
|
483
|
+
};
|
|
484
|
+
name = Release;
|
|
485
|
+
};
|
|
348
486
|
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
349
487
|
isa = XCBuildConfiguration;
|
|
350
|
-
baseConfigurationReference =
|
|
488
|
+
baseConfigurationReference = 8C2CFE33DF8F3DA7CDF5DA63 /* Pods-DocumentReader.debug.xcconfig */;
|
|
351
489
|
buildSettings = {
|
|
352
490
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
353
491
|
CLANG_ENABLE_MODULES = YES;
|
|
@@ -355,12 +493,11 @@
|
|
|
355
493
|
CURRENT_PROJECT_VERSION = 1;
|
|
356
494
|
DEVELOPMENT_TEAM = "";
|
|
357
495
|
ENABLE_BITCODE = NO;
|
|
358
|
-
|
|
496
|
+
INFOPLIST_FILE = DocumentReader/Info.plist;
|
|
497
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
359
498
|
"$(inherited)",
|
|
360
|
-
"
|
|
499
|
+
"@executable_path/Frameworks",
|
|
361
500
|
);
|
|
362
|
-
INFOPLIST_FILE = DocumentReader/Info.plist;
|
|
363
|
-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
364
501
|
OTHER_LDFLAGS = (
|
|
365
502
|
"$(inherited)",
|
|
366
503
|
"-ObjC",
|
|
@@ -376,7 +513,7 @@
|
|
|
376
513
|
};
|
|
377
514
|
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
378
515
|
isa = XCBuildConfiguration;
|
|
379
|
-
baseConfigurationReference =
|
|
516
|
+
baseConfigurationReference = 5D97E1634A81F8B8D5F5BB8B /* Pods-DocumentReader.release.xcconfig */;
|
|
380
517
|
buildSettings = {
|
|
381
518
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
382
519
|
CLANG_ENABLE_MODULES = YES;
|
|
@@ -384,7 +521,10 @@
|
|
|
384
521
|
CURRENT_PROJECT_VERSION = 1;
|
|
385
522
|
DEVELOPMENT_TEAM = "";
|
|
386
523
|
INFOPLIST_FILE = DocumentReader/Info.plist;
|
|
387
|
-
LD_RUNPATH_SEARCH_PATHS =
|
|
524
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
525
|
+
"$(inherited)",
|
|
526
|
+
"@executable_path/Frameworks",
|
|
527
|
+
);
|
|
388
528
|
OTHER_LDFLAGS = (
|
|
389
529
|
"$(inherited)",
|
|
390
530
|
"-ObjC",
|
|
@@ -420,6 +560,7 @@
|
|
|
420
560
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
421
561
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
422
562
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
563
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
423
564
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
424
565
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
425
566
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
@@ -429,6 +570,7 @@
|
|
|
429
570
|
COPY_PHASE_STRIP = NO;
|
|
430
571
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
431
572
|
ENABLE_TESTABILITY = YES;
|
|
573
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
|
|
432
574
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
433
575
|
GCC_DYNAMIC_NO_PIC = NO;
|
|
434
576
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
@@ -444,9 +586,13 @@
|
|
|
444
586
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
445
587
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
446
588
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
447
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
448
|
-
LD_RUNPATH_SEARCH_PATHS =
|
|
589
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
590
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
591
|
+
/usr/lib/swift,
|
|
592
|
+
"$(inherited)",
|
|
593
|
+
);
|
|
449
594
|
LIBRARY_SEARCH_PATHS = (
|
|
595
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
450
596
|
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
451
597
|
"\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
|
|
452
598
|
"\"$(inherited)\"",
|
|
@@ -480,6 +626,7 @@
|
|
|
480
626
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
481
627
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
482
628
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
629
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
483
630
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
484
631
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
485
632
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
@@ -489,6 +636,7 @@
|
|
|
489
636
|
COPY_PHASE_STRIP = YES;
|
|
490
637
|
ENABLE_NS_ASSERTIONS = NO;
|
|
491
638
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
639
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
|
|
492
640
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
493
641
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
494
642
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
@@ -497,9 +645,13 @@
|
|
|
497
645
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
498
646
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
499
647
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
500
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
501
|
-
LD_RUNPATH_SEARCH_PATHS =
|
|
648
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
649
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
650
|
+
/usr/lib/swift,
|
|
651
|
+
"$(inherited)",
|
|
652
|
+
);
|
|
502
653
|
LIBRARY_SEARCH_PATHS = (
|
|
654
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
503
655
|
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
504
656
|
"\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
|
|
505
657
|
"\"$(inherited)\"",
|
|
@@ -513,6 +665,15 @@
|
|
|
513
665
|
/* End XCBuildConfiguration section */
|
|
514
666
|
|
|
515
667
|
/* Begin XCConfigurationList section */
|
|
668
|
+
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "DocumentReaderTests" */ = {
|
|
669
|
+
isa = XCConfigurationList;
|
|
670
|
+
buildConfigurations = (
|
|
671
|
+
00E356F61AD99517003FC87E /* Debug */,
|
|
672
|
+
00E356F71AD99517003FC87E /* Release */,
|
|
673
|
+
);
|
|
674
|
+
defaultConfigurationIsVisible = 0;
|
|
675
|
+
defaultConfigurationName = Release;
|
|
676
|
+
};
|
|
516
677
|
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DocumentReader" */ = {
|
|
517
678
|
isa = XCConfigurationList;
|
|
518
679
|
buildConfigurations = (
|