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