react-native-blob-util 0.22.0 → 0.22.2

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 (97) hide show
  1. package/.eslintrc.js +56 -56
  2. package/LICENSE +21 -21
  3. package/Migration.md +41 -41
  4. package/NuGet.config +11 -11
  5. package/README.md +1109 -1104
  6. package/android/gradle.properties +1 -1
  7. package/android/src/main/AndroidManifest.xml +37 -37
  8. package/android/src/main/java/com/ReactNativeBlobUtil/ReactNativeBlobUtilConfig.java +57 -57
  9. package/android/src/main/java/com/ReactNativeBlobUtil/ReactNativeBlobUtilConst.java +20 -20
  10. package/android/src/main/java/com/ReactNativeBlobUtil/ReactNativeBlobUtilFileTransformer.java +9 -9
  11. package/android/src/main/java/com/ReactNativeBlobUtil/ReactNativeBlobUtilImpl.java +431 -431
  12. package/android/src/main/java/com/ReactNativeBlobUtil/ReactNativeBlobUtilProgressConfig.java +39 -39
  13. package/android/src/main/java/com/ReactNativeBlobUtil/ReactNativeBlobUtilReq.java +1014 -1014
  14. package/android/src/main/java/com/ReactNativeBlobUtil/Response/ReactNativeBlobUtilDefaultResp.java +98 -98
  15. package/android/src/main/java/com/ReactNativeBlobUtil/Response/ReactNativeBlobUtilFileResp.java +166 -166
  16. package/android/src/main/java/com/ReactNativeBlobUtil/Utils/FileDescription.java +19 -19
  17. package/android/src/main/java/com/ReactNativeBlobUtil/Utils/FileProvider.java +4 -4
  18. package/android/src/main/java/com/ReactNativeBlobUtil/Utils/MimeType.java +70 -70
  19. package/android/src/main/java/com/ReactNativeBlobUtil/Utils/PathResolver.java +223 -223
  20. package/android/src/main/java/com/ReactNativeBlobUtil/Utils/Tls12SocketFactory.java +68 -68
  21. package/android/src/main/res/values/strings.xml +3 -3
  22. package/android/src/main/res/xml/provider_paths.xml +12 -12
  23. package/android.js +58 -58
  24. package/class/ReactNativeBlobUtilCanceledFetchError.js +9 -9
  25. package/class/ReactNativeBlobUtilFile.js +5 -5
  26. package/class/ReactNativeBlobUtilReadStream.js +84 -84
  27. package/class/ReactNativeBlobUtilSession.js +68 -68
  28. package/class/ReactNativeBlobUtilWriteStream.js +50 -50
  29. package/class/StatefulPromise.js +7 -7
  30. package/codegenSpecs/NativeBlobUtils.js +86 -86
  31. package/components/Fetch.onPress.js +10 -10
  32. package/components/Fetch.when.js +15 -15
  33. package/fetch.js +350 -350
  34. package/fs.js +480 -480
  35. package/index.js +64 -64
  36. package/index.js.flow +192 -192
  37. package/index.web.js +1 -1
  38. package/ios/PrivacyInfo.xcprivacy +28 -28
  39. package/ios/ReactNativeBlobUtil/ReactNativeBlobUtil.h +55 -55
  40. package/ios/ReactNativeBlobUtil/ReactNativeBlobUtil.mm +992 -992
  41. package/ios/ReactNativeBlobUtil.xcodeproj/project.pbxproj +405 -405
  42. package/ios/ReactNativeBlobUtilConst.h +58 -58
  43. package/ios/ReactNativeBlobUtilConst.mm +47 -47
  44. package/ios/ReactNativeBlobUtilFS.h +108 -108
  45. package/ios/ReactNativeBlobUtilFS.mm +1064 -1064
  46. package/ios/ReactNativeBlobUtilFileTransformer.h +23 -23
  47. package/ios/ReactNativeBlobUtilFileTransformer.mm +20 -20
  48. package/ios/ReactNativeBlobUtilNetwork.h +49 -49
  49. package/ios/ReactNativeBlobUtilNetwork.mm +159 -159
  50. package/ios/ReactNativeBlobUtilProgress.h +32 -32
  51. package/ios/ReactNativeBlobUtilProgress.mm +57 -57
  52. package/ios/ReactNativeBlobUtilReqBuilder.h +37 -37
  53. package/ios/ReactNativeBlobUtilReqBuilder.mm +292 -292
  54. package/ios/ReactNativeBlobUtilRequest.h +48 -48
  55. package/ios/ReactNativeBlobUtilRequest.mm +584 -584
  56. package/ios.js +61 -61
  57. package/json-stream.js +42 -42
  58. package/lib/oboe-browser.js +2703 -2703
  59. package/mediacollection.js +36 -36
  60. package/package.json +68 -68
  61. package/polyfill/Blob.js +362 -362
  62. package/polyfill/Event.js +11 -11
  63. package/polyfill/EventTarget.js +78 -78
  64. package/polyfill/Fetch.js +219 -219
  65. package/polyfill/File.js +27 -27
  66. package/polyfill/FileReader.js +91 -91
  67. package/polyfill/ProgressEvent.js +32 -32
  68. package/polyfill/XMLHttpRequest.js +466 -466
  69. package/polyfill/XMLHttpRequestEventTarget.js +126 -126
  70. package/polyfill/index.js +11 -11
  71. package/react-native-blob-util.podspec +48 -48
  72. package/types.js +69 -69
  73. package/utils/log.js +40 -40
  74. package/utils/unicode.js +7 -7
  75. package/utils/uri.js +33 -33
  76. package/utils/uuid.js +4 -4
  77. package/windows/ExperimentalFeatures.props +33 -33
  78. package/windows/README.md +2 -2
  79. package/windows/ReactNativeBlobUtil/PropertySheet.props +15 -15
  80. package/windows/ReactNativeBlobUtil/ReactNativeBlobUtil.cpp +1836 -1836
  81. package/windows/ReactNativeBlobUtil/ReactNativeBlobUtil.def +3 -3
  82. package/windows/ReactNativeBlobUtil/ReactNativeBlobUtil.h +372 -372
  83. package/windows/ReactNativeBlobUtil/ReactNativeBlobUtil.vcxproj +139 -139
  84. package/windows/ReactNativeBlobUtil/ReactNativeBlobUtil.vcxproj.filters +43 -43
  85. package/windows/ReactNativeBlobUtil/ReactPackageProvider.cpp +20 -20
  86. package/windows/ReactNativeBlobUtil/ReactPackageProvider.h +24 -24
  87. package/windows/ReactNativeBlobUtil/ReactPackageProvider.idl +9 -9
  88. package/windows/ReactNativeBlobUtil/codegen/.clang-format +1 -1
  89. package/windows/ReactNativeBlobUtil/codegen/NativeBlobUtilsDataTypes.g.h +42 -42
  90. package/windows/ReactNativeBlobUtil/codegen/NativeBlobUtilsSpec.g.h +353 -353
  91. package/windows/ReactNativeBlobUtil/packages.config +3 -3
  92. package/windows/ReactNativeBlobUtil/packages.lock.json +59 -59
  93. package/windows/ReactNativeBlobUtil/pch.cpp +1 -1
  94. package/windows/ReactNativeBlobUtil/pch.h +30 -30
  95. package/windows/ReactNativeBlobUtil/resource.h +5 -5
  96. package/windows/ReactNativeBlobUtil/targetver.h +8 -8
  97. package/windows/ReactNativeBlobUtil.sln +43 -43
@@ -1,405 +1,405 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 11A307EE2A06E45800E56674 /* ReactNativeBlobUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307ED2A06E45800E56674 /* ReactNativeBlobUtil.mm */; };
11
- 11A307F82A06E47700E56674 /* ReactNativeBlobUtilNetwork.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307EF2A06E47300E56674 /* ReactNativeBlobUtilNetwork.mm */; };
12
- 11A307F92A06E47700E56674 /* ReactNativeBlobUtilReqBuilder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F02A06E47400E56674 /* ReactNativeBlobUtilReqBuilder.mm */; };
13
- 11A307FA2A06E47700E56674 /* ReactNativeBlobUtilFS.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F12A06E47400E56674 /* ReactNativeBlobUtilFS.mm */; };
14
- 11A307FB2A06E47700E56674 /* ReactNativeBlobUtilFileTransformer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F32A06E47400E56674 /* ReactNativeBlobUtilFileTransformer.mm */; };
15
- 11A307FC2A06E47700E56674 /* ReactNativeBlobUtilConst.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F42A06E47500E56674 /* ReactNativeBlobUtilConst.mm */; };
16
- 11A307FD2A06E47700E56674 /* ReactNativeBlobUtilProgress.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F52A06E47500E56674 /* ReactNativeBlobUtilProgress.mm */; };
17
- 11A307FE2A06E47700E56674 /* ReactNativeBlobUtilRequest.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F62A06E47500E56674 /* ReactNativeBlobUtilRequest.mm */; };
18
- 11A308002A06E92D00E56674 /* React.podspec in Frameworks */ = {isa = PBXBuildFile; fileRef = 11A307FF2A06E92D00E56674 /* React.podspec */; };
19
- A166D1AA1CE0647A00273590 /* ReactNativeBlobUtil.h in Sources */ = {isa = PBXBuildFile; fileRef = A15C30111CD25C330074CB35 /* ReactNativeBlobUtil.h */; };
20
- /* End PBXBuildFile section */
21
-
22
- /* Begin PBXCopyFilesBuildPhase section */
23
- A15C300C1CD25C330074CB35 /* CopyFiles */ = {
24
- isa = PBXCopyFilesBuildPhase;
25
- buildActionMask = 2147483647;
26
- dstPath = "include/$(PRODUCT_NAME)";
27
- dstSubfolderSpec = 16;
28
- files = (
29
- );
30
- runOnlyForDeploymentPostprocessing = 0;
31
- };
32
- /* End PBXCopyFilesBuildPhase section */
33
-
34
- /* Begin PBXFileReference section */
35
- 11A307ED2A06E45800E56674 /* ReactNativeBlobUtil.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ReactNativeBlobUtil.mm; path = ReactNativeBlobUtil/ReactNativeBlobUtil.mm; sourceTree = "<group>"; };
36
- 11A307EF2A06E47300E56674 /* ReactNativeBlobUtilNetwork.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilNetwork.mm; sourceTree = "<group>"; };
37
- 11A307F02A06E47400E56674 /* ReactNativeBlobUtilReqBuilder.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilReqBuilder.mm; sourceTree = "<group>"; };
38
- 11A307F12A06E47400E56674 /* ReactNativeBlobUtilFS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilFS.mm; sourceTree = "<group>"; };
39
- 11A307F22A06E47400E56674 /* ReactNativeBlobUtil */ = {isa = PBXFileReference; lastKnownFileType = folder; path = ReactNativeBlobUtil; sourceTree = "<group>"; };
40
- 11A307F32A06E47400E56674 /* ReactNativeBlobUtilFileTransformer.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilFileTransformer.mm; sourceTree = "<group>"; };
41
- 11A307F42A06E47500E56674 /* ReactNativeBlobUtilConst.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilConst.mm; sourceTree = "<group>"; };
42
- 11A307F52A06E47500E56674 /* ReactNativeBlobUtilProgress.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilProgress.mm; sourceTree = "<group>"; };
43
- 11A307F62A06E47500E56674 /* ReactNativeBlobUtilRequest.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilRequest.mm; sourceTree = "<group>"; };
44
- 11A307FF2A06E92D00E56674 /* React.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; name = React.podspec; path = "../node_modules/react-native/React.podspec"; sourceTree = "<group>"; };
45
- 1BDA30C5220621C99F823CB9 /* Pods-ReactNativeBlobUtil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBlobUtil.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeBlobUtil/Pods-ReactNativeBlobUtil.release.xcconfig"; sourceTree = "<group>"; };
46
- 636B49C8101263AC402FD024 /* Pods_ReactNativeBlobUtil.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ReactNativeBlobUtil.framework; sourceTree = BUILT_PRODUCTS_DIR; };
47
- 8C4801A4200CF71700FED7ED /* ReactNativeBlobUtilRequest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilRequest.h; sourceTree = "<group>"; };
48
- 9FD8D3C126F1709A00009F35 /* ReactNativeBlobUtilFileTransformer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilFileTransformer.h; sourceTree = "<group>"; };
49
- A158F4281D052E57006FFD38 /* ReactNativeBlobUtilFS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilFS.h; sourceTree = "<group>"; };
50
- A158F4291D0534A9006FFD38 /* ReactNativeBlobUtilConst.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilConst.h; sourceTree = "<group>"; };
51
- A158F42E1D0539CE006FFD38 /* ReactNativeBlobUtilNetwork.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilNetwork.h; sourceTree = "<group>"; };
52
- A15C300E1CD25C330074CB35 /* libReactNativeBlobUtil.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libReactNativeBlobUtil.a; sourceTree = BUILT_PRODUCTS_DIR; };
53
- A15C30111CD25C330074CB35 /* ReactNativeBlobUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ReactNativeBlobUtil.h; path = ReactNativeBlobUtil/ReactNativeBlobUtil.h; sourceTree = "<group>"; };
54
- A19B48231D98100800E6868A /* ReactNativeBlobUtilProgress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilProgress.h; sourceTree = "<group>"; };
55
- A1AAE2971D300E3E0051D11C /* ReactNativeBlobUtilReqBuilder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilReqBuilder.h; sourceTree = "<group>"; };
56
- CBE41E482BB345A0004922E9 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
57
- E83F89B1EFF498D9833537A4 /* Pods-ReactNativeBlobUtil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBlobUtil.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeBlobUtil/Pods-ReactNativeBlobUtil.debug.xcconfig"; sourceTree = "<group>"; };
58
- /* End PBXFileReference section */
59
-
60
- /* Begin PBXFrameworksBuildPhase section */
61
- A15C300B1CD25C330074CB35 /* Frameworks */ = {
62
- isa = PBXFrameworksBuildPhase;
63
- buildActionMask = 2147483647;
64
- files = (
65
- 11A308002A06E92D00E56674 /* React.podspec in Frameworks */,
66
- );
67
- runOnlyForDeploymentPostprocessing = 0;
68
- };
69
- /* End PBXFrameworksBuildPhase section */
70
-
71
- /* Begin PBXGroup section */
72
- 193768812AF9A9C46358234E /* Frameworks */ = {
73
- isa = PBXGroup;
74
- children = (
75
- 11A307FF2A06E92D00E56674 /* React.podspec */,
76
- 636B49C8101263AC402FD024 /* Pods_ReactNativeBlobUtil.framework */,
77
- );
78
- name = Frameworks;
79
- sourceTree = "<group>";
80
- };
81
- 8BD9ABDFAF76406291A798F2 /* Libraries */ = {
82
- isa = PBXGroup;
83
- children = (
84
- );
85
- name = Libraries;
86
- sourceTree = "<group>";
87
- };
88
- A15C30051CD25C330074CB35 = {
89
- isa = PBXGroup;
90
- children = (
91
- CBE41E482BB345A0004922E9 /* PrivacyInfo.xcprivacy */,
92
- 11A307F22A06E47400E56674 /* ReactNativeBlobUtil */,
93
- 11A307F42A06E47500E56674 /* ReactNativeBlobUtilConst.mm */,
94
- 11A307F32A06E47400E56674 /* ReactNativeBlobUtilFileTransformer.mm */,
95
- 11A307F12A06E47400E56674 /* ReactNativeBlobUtilFS.mm */,
96
- 11A307EF2A06E47300E56674 /* ReactNativeBlobUtilNetwork.mm */,
97
- 11A307F52A06E47500E56674 /* ReactNativeBlobUtilProgress.mm */,
98
- 11A307F02A06E47400E56674 /* ReactNativeBlobUtilReqBuilder.mm */,
99
- 11A307F62A06E47500E56674 /* ReactNativeBlobUtilRequest.mm */,
100
- 11A307ED2A06E45800E56674 /* ReactNativeBlobUtil.mm */,
101
- 9FD8D3C126F1709A00009F35 /* ReactNativeBlobUtilFileTransformer.h */,
102
- A19B48231D98100800E6868A /* ReactNativeBlobUtilProgress.h */,
103
- A1AAE2971D300E3E0051D11C /* ReactNativeBlobUtilReqBuilder.h */,
104
- A158F42E1D0539CE006FFD38 /* ReactNativeBlobUtilNetwork.h */,
105
- 8C4801A4200CF71700FED7ED /* ReactNativeBlobUtilRequest.h */,
106
- A158F4291D0534A9006FFD38 /* ReactNativeBlobUtilConst.h */,
107
- A158F4281D052E57006FFD38 /* ReactNativeBlobUtilFS.h */,
108
- A15C30111CD25C330074CB35 /* ReactNativeBlobUtil.h */,
109
- A15C300F1CD25C330074CB35 /* Products */,
110
- 8BD9ABDFAF76406291A798F2 /* Libraries */,
111
- BE4E5761992F01F75082D147 /* Pods */,
112
- 193768812AF9A9C46358234E /* Frameworks */,
113
- );
114
- sourceTree = "<group>";
115
- };
116
- A15C300F1CD25C330074CB35 /* Products */ = {
117
- isa = PBXGroup;
118
- children = (
119
- A15C300E1CD25C330074CB35 /* libReactNativeBlobUtil.a */,
120
- );
121
- name = Products;
122
- sourceTree = "<group>";
123
- };
124
- BE4E5761992F01F75082D147 /* Pods */ = {
125
- isa = PBXGroup;
126
- children = (
127
- E83F89B1EFF498D9833537A4 /* Pods-ReactNativeBlobUtil.debug.xcconfig */,
128
- 1BDA30C5220621C99F823CB9 /* Pods-ReactNativeBlobUtil.release.xcconfig */,
129
- );
130
- path = Pods;
131
- sourceTree = "<group>";
132
- };
133
- /* End PBXGroup section */
134
-
135
- /* Begin PBXNativeTarget section */
136
- A15C300D1CD25C330074CB35 /* ReactNativeBlobUtil */ = {
137
- isa = PBXNativeTarget;
138
- buildConfigurationList = A15C30171CD25C330074CB35 /* Build configuration list for PBXNativeTarget "ReactNativeBlobUtil" */;
139
- buildPhases = (
140
- D6BB6591D040E628F7A16E89 /* [CP] Check Pods Manifest.lock */,
141
- A15C300A1CD25C330074CB35 /* Sources */,
142
- A15C300B1CD25C330074CB35 /* Frameworks */,
143
- A15C300C1CD25C330074CB35 /* CopyFiles */,
144
- );
145
- buildRules = (
146
- );
147
- dependencies = (
148
- );
149
- name = ReactNativeBlobUtil;
150
- productName = ReactNativeBlobUtil;
151
- productReference = A15C300E1CD25C330074CB35 /* libReactNativeBlobUtil.a */;
152
- productType = "com.apple.product-type.library.static";
153
- };
154
- /* End PBXNativeTarget section */
155
-
156
- /* Begin PBXProject section */
157
- A15C30061CD25C330074CB35 /* Project object */ = {
158
- isa = PBXProject;
159
- attributes = {
160
- LastUpgradeCheck = 1420;
161
- ORGANIZATIONNAME = wkh237.github.io;
162
- TargetAttributes = {
163
- A15C300D1CD25C330074CB35 = {
164
- CreatedOnToolsVersion = 7.3;
165
- };
166
- };
167
- };
168
- buildConfigurationList = A15C30091CD25C330074CB35 /* Build configuration list for PBXProject "ReactNativeBlobUtil" */;
169
- compatibilityVersion = "Xcode 3.2";
170
- developmentRegion = en;
171
- hasScannedForEncodings = 0;
172
- knownRegions = (
173
- en,
174
- Base,
175
- );
176
- mainGroup = A15C30051CD25C330074CB35;
177
- productRefGroup = A15C300F1CD25C330074CB35 /* Products */;
178
- projectDirPath = "";
179
- projectRoot = "";
180
- targets = (
181
- A15C300D1CD25C330074CB35 /* ReactNativeBlobUtil */,
182
- );
183
- };
184
- /* End PBXProject section */
185
-
186
- /* Begin PBXShellScriptBuildPhase section */
187
- D6BB6591D040E628F7A16E89 /* [CP] Check Pods Manifest.lock */ = {
188
- isa = PBXShellScriptBuildPhase;
189
- buildActionMask = 2147483647;
190
- files = (
191
- );
192
- inputFileListPaths = (
193
- );
194
- inputPaths = (
195
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
196
- "${PODS_ROOT}/Manifest.lock",
197
- );
198
- name = "[CP] Check Pods Manifest.lock";
199
- outputFileListPaths = (
200
- );
201
- outputPaths = (
202
- "$(DERIVED_FILE_DIR)/Pods-ReactNativeBlobUtil-checkManifestLockResult.txt",
203
- );
204
- runOnlyForDeploymentPostprocessing = 0;
205
- shellPath = /bin/sh;
206
- 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";
207
- showEnvVarsInLog = 0;
208
- };
209
- /* End PBXShellScriptBuildPhase section */
210
-
211
- /* Begin PBXSourcesBuildPhase section */
212
- A15C300A1CD25C330074CB35 /* Sources */ = {
213
- isa = PBXSourcesBuildPhase;
214
- buildActionMask = 2147483647;
215
- files = (
216
- 11A307F92A06E47700E56674 /* ReactNativeBlobUtilReqBuilder.mm in Sources */,
217
- A166D1AA1CE0647A00273590 /* ReactNativeBlobUtil.h in Sources */,
218
- 11A307F82A06E47700E56674 /* ReactNativeBlobUtilNetwork.mm in Sources */,
219
- 11A307FB2A06E47700E56674 /* ReactNativeBlobUtilFileTransformer.mm in Sources */,
220
- 11A307FE2A06E47700E56674 /* ReactNativeBlobUtilRequest.mm in Sources */,
221
- 11A307FC2A06E47700E56674 /* ReactNativeBlobUtilConst.mm in Sources */,
222
- 11A307EE2A06E45800E56674 /* ReactNativeBlobUtil.mm in Sources */,
223
- 11A307FD2A06E47700E56674 /* ReactNativeBlobUtilProgress.mm in Sources */,
224
- 11A307FA2A06E47700E56674 /* ReactNativeBlobUtilFS.mm in Sources */,
225
- );
226
- runOnlyForDeploymentPostprocessing = 0;
227
- };
228
- /* End PBXSourcesBuildPhase section */
229
-
230
- /* Begin XCBuildConfiguration section */
231
- A15C30151CD25C330074CB35 /* Debug */ = {
232
- isa = XCBuildConfiguration;
233
- buildSettings = {
234
- ALWAYS_SEARCH_USER_PATHS = NO;
235
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
236
- CLANG_ANALYZER_NONNULL = YES;
237
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
238
- CLANG_CXX_LIBRARY = "libc++";
239
- CLANG_ENABLE_MODULES = YES;
240
- CLANG_ENABLE_OBJC_ARC = YES;
241
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
242
- CLANG_WARN_BOOL_CONVERSION = YES;
243
- CLANG_WARN_COMMA = YES;
244
- CLANG_WARN_CONSTANT_CONVERSION = YES;
245
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
246
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
247
- CLANG_WARN_EMPTY_BODY = YES;
248
- CLANG_WARN_ENUM_CONVERSION = YES;
249
- CLANG_WARN_INFINITE_RECURSION = YES;
250
- CLANG_WARN_INT_CONVERSION = YES;
251
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
252
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
253
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
254
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
255
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
256
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
257
- CLANG_WARN_STRICT_PROTOTYPES = YES;
258
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
259
- CLANG_WARN_UNREACHABLE_CODE = YES;
260
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
261
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
262
- COPY_PHASE_STRIP = NO;
263
- DEBUG_INFORMATION_FORMAT = dwarf;
264
- ENABLE_STRICT_OBJC_MSGSEND = YES;
265
- ENABLE_TESTABILITY = YES;
266
- GCC_C_LANGUAGE_STANDARD = gnu99;
267
- GCC_DYNAMIC_NO_PIC = NO;
268
- GCC_NO_COMMON_BLOCKS = YES;
269
- GCC_OPTIMIZATION_LEVEL = 0;
270
- GCC_PREPROCESSOR_DEFINITIONS = (
271
- "DEBUG=1",
272
- "$(inherited)",
273
- );
274
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
275
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
276
- GCC_WARN_UNDECLARED_SELECTOR = YES;
277
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
278
- GCC_WARN_UNUSED_FUNCTION = YES;
279
- GCC_WARN_UNUSED_VARIABLE = YES;
280
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
281
- MTL_ENABLE_DEBUG_INFO = YES;
282
- ONLY_ACTIVE_ARCH = YES;
283
- SDKROOT = iphoneos;
284
- };
285
- name = Debug;
286
- };
287
- A15C30161CD25C330074CB35 /* Release */ = {
288
- isa = XCBuildConfiguration;
289
- buildSettings = {
290
- ALWAYS_SEARCH_USER_PATHS = NO;
291
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
292
- CLANG_ANALYZER_NONNULL = YES;
293
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
294
- CLANG_CXX_LIBRARY = "libc++";
295
- CLANG_ENABLE_MODULES = YES;
296
- CLANG_ENABLE_OBJC_ARC = YES;
297
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
298
- CLANG_WARN_BOOL_CONVERSION = YES;
299
- CLANG_WARN_COMMA = YES;
300
- CLANG_WARN_CONSTANT_CONVERSION = YES;
301
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
302
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
303
- CLANG_WARN_EMPTY_BODY = YES;
304
- CLANG_WARN_ENUM_CONVERSION = YES;
305
- CLANG_WARN_INFINITE_RECURSION = YES;
306
- CLANG_WARN_INT_CONVERSION = YES;
307
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
308
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
309
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
310
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
311
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
312
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
313
- CLANG_WARN_STRICT_PROTOTYPES = YES;
314
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
315
- CLANG_WARN_UNREACHABLE_CODE = YES;
316
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
317
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
318
- COPY_PHASE_STRIP = NO;
319
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
320
- ENABLE_NS_ASSERTIONS = NO;
321
- ENABLE_STRICT_OBJC_MSGSEND = YES;
322
- GCC_C_LANGUAGE_STANDARD = gnu99;
323
- GCC_NO_COMMON_BLOCKS = YES;
324
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
325
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
326
- GCC_WARN_UNDECLARED_SELECTOR = YES;
327
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
328
- GCC_WARN_UNUSED_FUNCTION = YES;
329
- GCC_WARN_UNUSED_VARIABLE = YES;
330
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
331
- MTL_ENABLE_DEBUG_INFO = NO;
332
- SDKROOT = iphoneos;
333
- VALIDATE_PRODUCT = YES;
334
- };
335
- name = Release;
336
- };
337
- A15C30181CD25C330074CB35 /* Debug */ = {
338
- isa = XCBuildConfiguration;
339
- baseConfigurationReference = E83F89B1EFF498D9833537A4 /* Pods-ReactNativeBlobUtil.debug.xcconfig */;
340
- buildSettings = {
341
- ALWAYS_SEARCH_USER_PATHS = NO;
342
- GCC_INPUT_FILETYPE = automatic;
343
- HEADER_SEARCH_PATHS = (
344
- "$(inherited)",
345
- "$(SRCROOT)/Libraries/**",
346
- "$(SRCROOT)/../node_modules/react-native/React/**",
347
- "$(SRCROOT)/../../React/**",
348
- "$(SRCROOT)/../../react-native/React/**",
349
- "$(SRCROOT)/../../node_modules/react-native/React/**",
350
- "$(SRCROOT)/../../node_modules/react-native-blob-util/ios/ReactNativeBlobUtil",
351
- "$(SRCROOT)/../../ReactNativeBlobUtilTest/node_modules/react-native/**",
352
- );
353
- OTHER_LDFLAGS = "-ObjC";
354
- PRODUCT_NAME = "$(TARGET_NAME)";
355
- SKIP_INSTALL = YES;
356
- };
357
- name = Debug;
358
- };
359
- A15C30191CD25C330074CB35 /* Release */ = {
360
- isa = XCBuildConfiguration;
361
- baseConfigurationReference = 1BDA30C5220621C99F823CB9 /* Pods-ReactNativeBlobUtil.release.xcconfig */;
362
- buildSettings = {
363
- ALWAYS_SEARCH_USER_PATHS = NO;
364
- GCC_INPUT_FILETYPE = automatic;
365
- HEADER_SEARCH_PATHS = (
366
- "$(inherited)",
367
- "$(SRCROOT)/Libraries/**",
368
- "$(SRCROOT)/../node_modules/react-native/React/**",
369
- "$(SRCROOT)/../../React/**",
370
- "$(SRCROOT)/../../react-native/React/**",
371
- "$(SRCROOT)/../../node_modules/react-native/React/**",
372
- "$(SRCROOT)/../../node_modules/react-native-blob-util/ios/ReactNativeBlobUtil",
373
- "$(SRCROOT)/../../ReactNativeBlobUtilTest/node_modules/react-native/**",
374
- );
375
- OTHER_LDFLAGS = "-ObjC";
376
- PRODUCT_NAME = "$(TARGET_NAME)";
377
- SKIP_INSTALL = YES;
378
- };
379
- name = Release;
380
- };
381
- /* End XCBuildConfiguration section */
382
-
383
- /* Begin XCConfigurationList section */
384
- A15C30091CD25C330074CB35 /* Build configuration list for PBXProject "ReactNativeBlobUtil" */ = {
385
- isa = XCConfigurationList;
386
- buildConfigurations = (
387
- A15C30151CD25C330074CB35 /* Debug */,
388
- A15C30161CD25C330074CB35 /* Release */,
389
- );
390
- defaultConfigurationIsVisible = 0;
391
- defaultConfigurationName = Release;
392
- };
393
- A15C30171CD25C330074CB35 /* Build configuration list for PBXNativeTarget "ReactNativeBlobUtil" */ = {
394
- isa = XCConfigurationList;
395
- buildConfigurations = (
396
- A15C30181CD25C330074CB35 /* Debug */,
397
- A15C30191CD25C330074CB35 /* Release */,
398
- );
399
- defaultConfigurationIsVisible = 0;
400
- defaultConfigurationName = Release;
401
- };
402
- /* End XCConfigurationList section */
403
- };
404
- rootObject = A15C30061CD25C330074CB35 /* Project object */;
405
- }
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 11A307EE2A06E45800E56674 /* ReactNativeBlobUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307ED2A06E45800E56674 /* ReactNativeBlobUtil.mm */; };
11
+ 11A307F82A06E47700E56674 /* ReactNativeBlobUtilNetwork.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307EF2A06E47300E56674 /* ReactNativeBlobUtilNetwork.mm */; };
12
+ 11A307F92A06E47700E56674 /* ReactNativeBlobUtilReqBuilder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F02A06E47400E56674 /* ReactNativeBlobUtilReqBuilder.mm */; };
13
+ 11A307FA2A06E47700E56674 /* ReactNativeBlobUtilFS.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F12A06E47400E56674 /* ReactNativeBlobUtilFS.mm */; };
14
+ 11A307FB2A06E47700E56674 /* ReactNativeBlobUtilFileTransformer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F32A06E47400E56674 /* ReactNativeBlobUtilFileTransformer.mm */; };
15
+ 11A307FC2A06E47700E56674 /* ReactNativeBlobUtilConst.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F42A06E47500E56674 /* ReactNativeBlobUtilConst.mm */; };
16
+ 11A307FD2A06E47700E56674 /* ReactNativeBlobUtilProgress.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F52A06E47500E56674 /* ReactNativeBlobUtilProgress.mm */; };
17
+ 11A307FE2A06E47700E56674 /* ReactNativeBlobUtilRequest.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11A307F62A06E47500E56674 /* ReactNativeBlobUtilRequest.mm */; };
18
+ 11A308002A06E92D00E56674 /* React.podspec in Frameworks */ = {isa = PBXBuildFile; fileRef = 11A307FF2A06E92D00E56674 /* React.podspec */; };
19
+ A166D1AA1CE0647A00273590 /* ReactNativeBlobUtil.h in Sources */ = {isa = PBXBuildFile; fileRef = A15C30111CD25C330074CB35 /* ReactNativeBlobUtil.h */; };
20
+ /* End PBXBuildFile section */
21
+
22
+ /* Begin PBXCopyFilesBuildPhase section */
23
+ A15C300C1CD25C330074CB35 /* CopyFiles */ = {
24
+ isa = PBXCopyFilesBuildPhase;
25
+ buildActionMask = 2147483647;
26
+ dstPath = "include/$(PRODUCT_NAME)";
27
+ dstSubfolderSpec = 16;
28
+ files = (
29
+ );
30
+ runOnlyForDeploymentPostprocessing = 0;
31
+ };
32
+ /* End PBXCopyFilesBuildPhase section */
33
+
34
+ /* Begin PBXFileReference section */
35
+ 11A307ED2A06E45800E56674 /* ReactNativeBlobUtil.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ReactNativeBlobUtil.mm; path = ReactNativeBlobUtil/ReactNativeBlobUtil.mm; sourceTree = "<group>"; };
36
+ 11A307EF2A06E47300E56674 /* ReactNativeBlobUtilNetwork.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilNetwork.mm; sourceTree = "<group>"; };
37
+ 11A307F02A06E47400E56674 /* ReactNativeBlobUtilReqBuilder.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilReqBuilder.mm; sourceTree = "<group>"; };
38
+ 11A307F12A06E47400E56674 /* ReactNativeBlobUtilFS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilFS.mm; sourceTree = "<group>"; };
39
+ 11A307F22A06E47400E56674 /* ReactNativeBlobUtil */ = {isa = PBXFileReference; lastKnownFileType = folder; path = ReactNativeBlobUtil; sourceTree = "<group>"; };
40
+ 11A307F32A06E47400E56674 /* ReactNativeBlobUtilFileTransformer.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilFileTransformer.mm; sourceTree = "<group>"; };
41
+ 11A307F42A06E47500E56674 /* ReactNativeBlobUtilConst.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilConst.mm; sourceTree = "<group>"; };
42
+ 11A307F52A06E47500E56674 /* ReactNativeBlobUtilProgress.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilProgress.mm; sourceTree = "<group>"; };
43
+ 11A307F62A06E47500E56674 /* ReactNativeBlobUtilRequest.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ReactNativeBlobUtilRequest.mm; sourceTree = "<group>"; };
44
+ 11A307FF2A06E92D00E56674 /* React.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; name = React.podspec; path = "../node_modules/react-native/React.podspec"; sourceTree = "<group>"; };
45
+ 1BDA30C5220621C99F823CB9 /* Pods-ReactNativeBlobUtil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBlobUtil.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeBlobUtil/Pods-ReactNativeBlobUtil.release.xcconfig"; sourceTree = "<group>"; };
46
+ 636B49C8101263AC402FD024 /* Pods_ReactNativeBlobUtil.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ReactNativeBlobUtil.framework; sourceTree = BUILT_PRODUCTS_DIR; };
47
+ 8C4801A4200CF71700FED7ED /* ReactNativeBlobUtilRequest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilRequest.h; sourceTree = "<group>"; };
48
+ 9FD8D3C126F1709A00009F35 /* ReactNativeBlobUtilFileTransformer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilFileTransformer.h; sourceTree = "<group>"; };
49
+ A158F4281D052E57006FFD38 /* ReactNativeBlobUtilFS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilFS.h; sourceTree = "<group>"; };
50
+ A158F4291D0534A9006FFD38 /* ReactNativeBlobUtilConst.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilConst.h; sourceTree = "<group>"; };
51
+ A158F42E1D0539CE006FFD38 /* ReactNativeBlobUtilNetwork.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilNetwork.h; sourceTree = "<group>"; };
52
+ A15C300E1CD25C330074CB35 /* libReactNativeBlobUtil.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libReactNativeBlobUtil.a; sourceTree = BUILT_PRODUCTS_DIR; };
53
+ A15C30111CD25C330074CB35 /* ReactNativeBlobUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ReactNativeBlobUtil.h; path = ReactNativeBlobUtil/ReactNativeBlobUtil.h; sourceTree = "<group>"; };
54
+ A19B48231D98100800E6868A /* ReactNativeBlobUtilProgress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilProgress.h; sourceTree = "<group>"; };
55
+ A1AAE2971D300E3E0051D11C /* ReactNativeBlobUtilReqBuilder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeBlobUtilReqBuilder.h; sourceTree = "<group>"; };
56
+ CBE41E482BB345A0004922E9 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
57
+ E83F89B1EFF498D9833537A4 /* Pods-ReactNativeBlobUtil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBlobUtil.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeBlobUtil/Pods-ReactNativeBlobUtil.debug.xcconfig"; sourceTree = "<group>"; };
58
+ /* End PBXFileReference section */
59
+
60
+ /* Begin PBXFrameworksBuildPhase section */
61
+ A15C300B1CD25C330074CB35 /* Frameworks */ = {
62
+ isa = PBXFrameworksBuildPhase;
63
+ buildActionMask = 2147483647;
64
+ files = (
65
+ 11A308002A06E92D00E56674 /* React.podspec in Frameworks */,
66
+ );
67
+ runOnlyForDeploymentPostprocessing = 0;
68
+ };
69
+ /* End PBXFrameworksBuildPhase section */
70
+
71
+ /* Begin PBXGroup section */
72
+ 193768812AF9A9C46358234E /* Frameworks */ = {
73
+ isa = PBXGroup;
74
+ children = (
75
+ 11A307FF2A06E92D00E56674 /* React.podspec */,
76
+ 636B49C8101263AC402FD024 /* Pods_ReactNativeBlobUtil.framework */,
77
+ );
78
+ name = Frameworks;
79
+ sourceTree = "<group>";
80
+ };
81
+ 8BD9ABDFAF76406291A798F2 /* Libraries */ = {
82
+ isa = PBXGroup;
83
+ children = (
84
+ );
85
+ name = Libraries;
86
+ sourceTree = "<group>";
87
+ };
88
+ A15C30051CD25C330074CB35 = {
89
+ isa = PBXGroup;
90
+ children = (
91
+ CBE41E482BB345A0004922E9 /* PrivacyInfo.xcprivacy */,
92
+ 11A307F22A06E47400E56674 /* ReactNativeBlobUtil */,
93
+ 11A307F42A06E47500E56674 /* ReactNativeBlobUtilConst.mm */,
94
+ 11A307F32A06E47400E56674 /* ReactNativeBlobUtilFileTransformer.mm */,
95
+ 11A307F12A06E47400E56674 /* ReactNativeBlobUtilFS.mm */,
96
+ 11A307EF2A06E47300E56674 /* ReactNativeBlobUtilNetwork.mm */,
97
+ 11A307F52A06E47500E56674 /* ReactNativeBlobUtilProgress.mm */,
98
+ 11A307F02A06E47400E56674 /* ReactNativeBlobUtilReqBuilder.mm */,
99
+ 11A307F62A06E47500E56674 /* ReactNativeBlobUtilRequest.mm */,
100
+ 11A307ED2A06E45800E56674 /* ReactNativeBlobUtil.mm */,
101
+ 9FD8D3C126F1709A00009F35 /* ReactNativeBlobUtilFileTransformer.h */,
102
+ A19B48231D98100800E6868A /* ReactNativeBlobUtilProgress.h */,
103
+ A1AAE2971D300E3E0051D11C /* ReactNativeBlobUtilReqBuilder.h */,
104
+ A158F42E1D0539CE006FFD38 /* ReactNativeBlobUtilNetwork.h */,
105
+ 8C4801A4200CF71700FED7ED /* ReactNativeBlobUtilRequest.h */,
106
+ A158F4291D0534A9006FFD38 /* ReactNativeBlobUtilConst.h */,
107
+ A158F4281D052E57006FFD38 /* ReactNativeBlobUtilFS.h */,
108
+ A15C30111CD25C330074CB35 /* ReactNativeBlobUtil.h */,
109
+ A15C300F1CD25C330074CB35 /* Products */,
110
+ 8BD9ABDFAF76406291A798F2 /* Libraries */,
111
+ BE4E5761992F01F75082D147 /* Pods */,
112
+ 193768812AF9A9C46358234E /* Frameworks */,
113
+ );
114
+ sourceTree = "<group>";
115
+ };
116
+ A15C300F1CD25C330074CB35 /* Products */ = {
117
+ isa = PBXGroup;
118
+ children = (
119
+ A15C300E1CD25C330074CB35 /* libReactNativeBlobUtil.a */,
120
+ );
121
+ name = Products;
122
+ sourceTree = "<group>";
123
+ };
124
+ BE4E5761992F01F75082D147 /* Pods */ = {
125
+ isa = PBXGroup;
126
+ children = (
127
+ E83F89B1EFF498D9833537A4 /* Pods-ReactNativeBlobUtil.debug.xcconfig */,
128
+ 1BDA30C5220621C99F823CB9 /* Pods-ReactNativeBlobUtil.release.xcconfig */,
129
+ );
130
+ path = Pods;
131
+ sourceTree = "<group>";
132
+ };
133
+ /* End PBXGroup section */
134
+
135
+ /* Begin PBXNativeTarget section */
136
+ A15C300D1CD25C330074CB35 /* ReactNativeBlobUtil */ = {
137
+ isa = PBXNativeTarget;
138
+ buildConfigurationList = A15C30171CD25C330074CB35 /* Build configuration list for PBXNativeTarget "ReactNativeBlobUtil" */;
139
+ buildPhases = (
140
+ D6BB6591D040E628F7A16E89 /* [CP] Check Pods Manifest.lock */,
141
+ A15C300A1CD25C330074CB35 /* Sources */,
142
+ A15C300B1CD25C330074CB35 /* Frameworks */,
143
+ A15C300C1CD25C330074CB35 /* CopyFiles */,
144
+ );
145
+ buildRules = (
146
+ );
147
+ dependencies = (
148
+ );
149
+ name = ReactNativeBlobUtil;
150
+ productName = ReactNativeBlobUtil;
151
+ productReference = A15C300E1CD25C330074CB35 /* libReactNativeBlobUtil.a */;
152
+ productType = "com.apple.product-type.library.static";
153
+ };
154
+ /* End PBXNativeTarget section */
155
+
156
+ /* Begin PBXProject section */
157
+ A15C30061CD25C330074CB35 /* Project object */ = {
158
+ isa = PBXProject;
159
+ attributes = {
160
+ LastUpgradeCheck = 1420;
161
+ ORGANIZATIONNAME = wkh237.github.io;
162
+ TargetAttributes = {
163
+ A15C300D1CD25C330074CB35 = {
164
+ CreatedOnToolsVersion = 7.3;
165
+ };
166
+ };
167
+ };
168
+ buildConfigurationList = A15C30091CD25C330074CB35 /* Build configuration list for PBXProject "ReactNativeBlobUtil" */;
169
+ compatibilityVersion = "Xcode 3.2";
170
+ developmentRegion = en;
171
+ hasScannedForEncodings = 0;
172
+ knownRegions = (
173
+ en,
174
+ Base,
175
+ );
176
+ mainGroup = A15C30051CD25C330074CB35;
177
+ productRefGroup = A15C300F1CD25C330074CB35 /* Products */;
178
+ projectDirPath = "";
179
+ projectRoot = "";
180
+ targets = (
181
+ A15C300D1CD25C330074CB35 /* ReactNativeBlobUtil */,
182
+ );
183
+ };
184
+ /* End PBXProject section */
185
+
186
+ /* Begin PBXShellScriptBuildPhase section */
187
+ D6BB6591D040E628F7A16E89 /* [CP] Check Pods Manifest.lock */ = {
188
+ isa = PBXShellScriptBuildPhase;
189
+ buildActionMask = 2147483647;
190
+ files = (
191
+ );
192
+ inputFileListPaths = (
193
+ );
194
+ inputPaths = (
195
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
196
+ "${PODS_ROOT}/Manifest.lock",
197
+ );
198
+ name = "[CP] Check Pods Manifest.lock";
199
+ outputFileListPaths = (
200
+ );
201
+ outputPaths = (
202
+ "$(DERIVED_FILE_DIR)/Pods-ReactNativeBlobUtil-checkManifestLockResult.txt",
203
+ );
204
+ runOnlyForDeploymentPostprocessing = 0;
205
+ shellPath = /bin/sh;
206
+ 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";
207
+ showEnvVarsInLog = 0;
208
+ };
209
+ /* End PBXShellScriptBuildPhase section */
210
+
211
+ /* Begin PBXSourcesBuildPhase section */
212
+ A15C300A1CD25C330074CB35 /* Sources */ = {
213
+ isa = PBXSourcesBuildPhase;
214
+ buildActionMask = 2147483647;
215
+ files = (
216
+ 11A307F92A06E47700E56674 /* ReactNativeBlobUtilReqBuilder.mm in Sources */,
217
+ A166D1AA1CE0647A00273590 /* ReactNativeBlobUtil.h in Sources */,
218
+ 11A307F82A06E47700E56674 /* ReactNativeBlobUtilNetwork.mm in Sources */,
219
+ 11A307FB2A06E47700E56674 /* ReactNativeBlobUtilFileTransformer.mm in Sources */,
220
+ 11A307FE2A06E47700E56674 /* ReactNativeBlobUtilRequest.mm in Sources */,
221
+ 11A307FC2A06E47700E56674 /* ReactNativeBlobUtilConst.mm in Sources */,
222
+ 11A307EE2A06E45800E56674 /* ReactNativeBlobUtil.mm in Sources */,
223
+ 11A307FD2A06E47700E56674 /* ReactNativeBlobUtilProgress.mm in Sources */,
224
+ 11A307FA2A06E47700E56674 /* ReactNativeBlobUtilFS.mm in Sources */,
225
+ );
226
+ runOnlyForDeploymentPostprocessing = 0;
227
+ };
228
+ /* End PBXSourcesBuildPhase section */
229
+
230
+ /* Begin XCBuildConfiguration section */
231
+ A15C30151CD25C330074CB35 /* Debug */ = {
232
+ isa = XCBuildConfiguration;
233
+ buildSettings = {
234
+ ALWAYS_SEARCH_USER_PATHS = NO;
235
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
236
+ CLANG_ANALYZER_NONNULL = YES;
237
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
238
+ CLANG_CXX_LIBRARY = "libc++";
239
+ CLANG_ENABLE_MODULES = YES;
240
+ CLANG_ENABLE_OBJC_ARC = YES;
241
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
242
+ CLANG_WARN_BOOL_CONVERSION = YES;
243
+ CLANG_WARN_COMMA = YES;
244
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
245
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
246
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
247
+ CLANG_WARN_EMPTY_BODY = YES;
248
+ CLANG_WARN_ENUM_CONVERSION = YES;
249
+ CLANG_WARN_INFINITE_RECURSION = YES;
250
+ CLANG_WARN_INT_CONVERSION = YES;
251
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
252
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
253
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
254
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
255
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
256
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
257
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
258
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
259
+ CLANG_WARN_UNREACHABLE_CODE = YES;
260
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
261
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
262
+ COPY_PHASE_STRIP = NO;
263
+ DEBUG_INFORMATION_FORMAT = dwarf;
264
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
265
+ ENABLE_TESTABILITY = YES;
266
+ GCC_C_LANGUAGE_STANDARD = gnu99;
267
+ GCC_DYNAMIC_NO_PIC = NO;
268
+ GCC_NO_COMMON_BLOCKS = YES;
269
+ GCC_OPTIMIZATION_LEVEL = 0;
270
+ GCC_PREPROCESSOR_DEFINITIONS = (
271
+ "DEBUG=1",
272
+ "$(inherited)",
273
+ );
274
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
275
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
276
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
277
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
278
+ GCC_WARN_UNUSED_FUNCTION = YES;
279
+ GCC_WARN_UNUSED_VARIABLE = YES;
280
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
281
+ MTL_ENABLE_DEBUG_INFO = YES;
282
+ ONLY_ACTIVE_ARCH = YES;
283
+ SDKROOT = iphoneos;
284
+ };
285
+ name = Debug;
286
+ };
287
+ A15C30161CD25C330074CB35 /* Release */ = {
288
+ isa = XCBuildConfiguration;
289
+ buildSettings = {
290
+ ALWAYS_SEARCH_USER_PATHS = NO;
291
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
292
+ CLANG_ANALYZER_NONNULL = YES;
293
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
294
+ CLANG_CXX_LIBRARY = "libc++";
295
+ CLANG_ENABLE_MODULES = YES;
296
+ CLANG_ENABLE_OBJC_ARC = YES;
297
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
298
+ CLANG_WARN_BOOL_CONVERSION = YES;
299
+ CLANG_WARN_COMMA = YES;
300
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
301
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
302
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
303
+ CLANG_WARN_EMPTY_BODY = YES;
304
+ CLANG_WARN_ENUM_CONVERSION = YES;
305
+ CLANG_WARN_INFINITE_RECURSION = YES;
306
+ CLANG_WARN_INT_CONVERSION = YES;
307
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
308
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
309
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
310
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
311
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
312
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
313
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
314
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
315
+ CLANG_WARN_UNREACHABLE_CODE = YES;
316
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
317
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
318
+ COPY_PHASE_STRIP = NO;
319
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
320
+ ENABLE_NS_ASSERTIONS = NO;
321
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
322
+ GCC_C_LANGUAGE_STANDARD = gnu99;
323
+ GCC_NO_COMMON_BLOCKS = YES;
324
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
325
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
326
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
327
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
328
+ GCC_WARN_UNUSED_FUNCTION = YES;
329
+ GCC_WARN_UNUSED_VARIABLE = YES;
330
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
331
+ MTL_ENABLE_DEBUG_INFO = NO;
332
+ SDKROOT = iphoneos;
333
+ VALIDATE_PRODUCT = YES;
334
+ };
335
+ name = Release;
336
+ };
337
+ A15C30181CD25C330074CB35 /* Debug */ = {
338
+ isa = XCBuildConfiguration;
339
+ baseConfigurationReference = E83F89B1EFF498D9833537A4 /* Pods-ReactNativeBlobUtil.debug.xcconfig */;
340
+ buildSettings = {
341
+ ALWAYS_SEARCH_USER_PATHS = NO;
342
+ GCC_INPUT_FILETYPE = automatic;
343
+ HEADER_SEARCH_PATHS = (
344
+ "$(inherited)",
345
+ "$(SRCROOT)/Libraries/**",
346
+ "$(SRCROOT)/../node_modules/react-native/React/**",
347
+ "$(SRCROOT)/../../React/**",
348
+ "$(SRCROOT)/../../react-native/React/**",
349
+ "$(SRCROOT)/../../node_modules/react-native/React/**",
350
+ "$(SRCROOT)/../../node_modules/react-native-blob-util/ios/ReactNativeBlobUtil",
351
+ "$(SRCROOT)/../../ReactNativeBlobUtilTest/node_modules/react-native/**",
352
+ );
353
+ OTHER_LDFLAGS = "-ObjC";
354
+ PRODUCT_NAME = "$(TARGET_NAME)";
355
+ SKIP_INSTALL = YES;
356
+ };
357
+ name = Debug;
358
+ };
359
+ A15C30191CD25C330074CB35 /* Release */ = {
360
+ isa = XCBuildConfiguration;
361
+ baseConfigurationReference = 1BDA30C5220621C99F823CB9 /* Pods-ReactNativeBlobUtil.release.xcconfig */;
362
+ buildSettings = {
363
+ ALWAYS_SEARCH_USER_PATHS = NO;
364
+ GCC_INPUT_FILETYPE = automatic;
365
+ HEADER_SEARCH_PATHS = (
366
+ "$(inherited)",
367
+ "$(SRCROOT)/Libraries/**",
368
+ "$(SRCROOT)/../node_modules/react-native/React/**",
369
+ "$(SRCROOT)/../../React/**",
370
+ "$(SRCROOT)/../../react-native/React/**",
371
+ "$(SRCROOT)/../../node_modules/react-native/React/**",
372
+ "$(SRCROOT)/../../node_modules/react-native-blob-util/ios/ReactNativeBlobUtil",
373
+ "$(SRCROOT)/../../ReactNativeBlobUtilTest/node_modules/react-native/**",
374
+ );
375
+ OTHER_LDFLAGS = "-ObjC";
376
+ PRODUCT_NAME = "$(TARGET_NAME)";
377
+ SKIP_INSTALL = YES;
378
+ };
379
+ name = Release;
380
+ };
381
+ /* End XCBuildConfiguration section */
382
+
383
+ /* Begin XCConfigurationList section */
384
+ A15C30091CD25C330074CB35 /* Build configuration list for PBXProject "ReactNativeBlobUtil" */ = {
385
+ isa = XCConfigurationList;
386
+ buildConfigurations = (
387
+ A15C30151CD25C330074CB35 /* Debug */,
388
+ A15C30161CD25C330074CB35 /* Release */,
389
+ );
390
+ defaultConfigurationIsVisible = 0;
391
+ defaultConfigurationName = Release;
392
+ };
393
+ A15C30171CD25C330074CB35 /* Build configuration list for PBXNativeTarget "ReactNativeBlobUtil" */ = {
394
+ isa = XCConfigurationList;
395
+ buildConfigurations = (
396
+ A15C30181CD25C330074CB35 /* Debug */,
397
+ A15C30191CD25C330074CB35 /* Release */,
398
+ );
399
+ defaultConfigurationIsVisible = 0;
400
+ defaultConfigurationName = Release;
401
+ };
402
+ /* End XCConfigurationList section */
403
+ };
404
+ rootObject = A15C30061CD25C330074CB35 /* Project object */;
405
+ }