react-native-mosquito-transport 0.0.47 → 0.0.49

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/CONTRIBUTING.md +37 -19
  2. package/MosquitoTransport.podspec +20 -0
  3. package/android/build.gradle +32 -42
  4. package/android/src/main/AndroidManifest.xml +1 -3
  5. package/android/src/main/java/com/mosquitotransport/MosquitoTransportModule.kt +101 -0
  6. package/android/src/main/java/com/mosquitotransport/MosquitoTransportPackage.kt +31 -0
  7. package/android/src/main/java/com/mosquitotransport/utils/FileUploader.kt +106 -0
  8. package/android/src/main/java/com/mosquitotransport/utils/UploadCallback.kt +7 -0
  9. package/ios/MosquitoTransport-Bridging-Header.h +1 -0
  10. package/ios/MosquitoTransport.h +6 -0
  11. package/ios/MosquitoTransport.mm +81 -0
  12. package/ios/{Mosquitodb.swift → MosquitoTransport.swift} +39 -42
  13. package/package.json +11 -3
  14. package/src/NativeMosquitoTransport.js +24 -0
  15. package/src/helpers/fs_manager.js +1 -1
  16. package/src/helpers/utils.js +2 -4
  17. package/src/helpers/variables.js +2 -1
  18. package/src/index.d.ts +55 -24
  19. package/src/index.js +20 -12
  20. package/src/products/auth/accessor.js +119 -95
  21. package/src/products/auth/index.js +11 -9
  22. package/src/products/database/index.js +1 -0
  23. package/src/products/http_callable/index.js +6 -5
  24. package/src/products/storage/index.js +65 -60
  25. package/.jshintignore +0 -4
  26. package/.jshintrc +0 -16
  27. package/TODO +0 -27
  28. package/android/gradle.properties +0 -5
  29. package/android/src/main/java/com/mosquitodb/MosquitodbModule.java +0 -82
  30. package/android/src/main/java/com/mosquitodb/MosquitodbPackage.java +0 -28
  31. package/android/src/main/java/com/mosquitodb/utils/FileUploader.java +0 -101
  32. package/android/src/main/java/com/mosquitodb/utils/UploadCallback.java +0 -7
  33. package/example/.bundle/config +0 -2
  34. package/example/.node-version +0 -1
  35. package/example/.watchmanconfig +0 -1
  36. package/example/Gemfile +0 -6
  37. package/example/android/app/build.gradle +0 -170
  38. package/example/android/app/debug.keystore +0 -0
  39. package/example/android/app/proguard-rules.pro +0 -10
  40. package/example/android/app/src/debug/AndroidManifest.xml +0 -13
  41. package/example/android/app/src/debug/java/com/mosquitodbexample/ReactNativeFlipper.java +0 -75
  42. package/example/android/app/src/main/AndroidManifest.xml +0 -25
  43. package/example/android/app/src/main/java/com/mosquitodbexample/MainActivity.java +0 -35
  44. package/example/android/app/src/main/java/com/mosquitodbexample/MainApplication.java +0 -62
  45. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -36
  46. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  47. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  48. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  49. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  50. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  51. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  52. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  53. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  54. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  55. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  56. package/example/android/app/src/main/res/values/strings.xml +0 -3
  57. package/example/android/app/src/main/res/values/styles.xml +0 -9
  58. package/example/android/app/src/release/java/com/mosquitodbexample/ReactNativeFlipper.java +0 -20
  59. package/example/android/build.gradle +0 -21
  60. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  61. package/example/android/gradle/wrapper/gradle-wrapper.properties +0 -5
  62. package/example/android/gradle.properties +0 -44
  63. package/example/android/gradlew +0 -234
  64. package/example/android/gradlew.bat +0 -89
  65. package/example/android/settings.gradle +0 -4
  66. package/example/app.json +0 -4
  67. package/example/babel.config.js +0 -17
  68. package/example/index.js +0 -5
  69. package/example/ios/.xcode.env +0 -11
  70. package/example/ios/File.swift +0 -6
  71. package/example/ios/MosquitodbExample/AppDelegate.h +0 -6
  72. package/example/ios/MosquitodbExample/AppDelegate.mm +0 -36
  73. package/example/ios/MosquitodbExample/Images.xcassets/AppIcon.appiconset/Contents.json +0 -53
  74. package/example/ios/MosquitodbExample/Images.xcassets/Contents.json +0 -6
  75. package/example/ios/MosquitodbExample/Info.plist +0 -55
  76. package/example/ios/MosquitodbExample/LaunchScreen.storyboard +0 -47
  77. package/example/ios/MosquitodbExample/main.m +0 -10
  78. package/example/ios/MosquitodbExample-Bridging-Header.h +0 -3
  79. package/example/ios/MosquitodbExample.xcodeproj/project.pbxproj +0 -703
  80. package/example/ios/MosquitodbExample.xcodeproj/xcshareddata/xcschemes/MosquitodbExample.xcscheme +0 -88
  81. package/example/ios/MosquitodbExample.xcworkspace/contents.xcworkspacedata +0 -10
  82. package/example/ios/MosquitodbExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  83. package/example/ios/MosquitodbExample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +0 -8
  84. package/example/ios/MosquitodbExample.xcworkspace/xcuserdata/anthony.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  85. package/example/ios/MosquitodbExample.xcworkspace/xcuserdata/anthony.xcuserdatad/WorkspaceSettings.xcsettings +0 -14
  86. package/example/ios/MosquitodbExampleTests/Info.plist +0 -24
  87. package/example/ios/MosquitodbExampleTests/MosquitodbExampleTests.m +0 -66
  88. package/example/ios/Podfile +0 -60
  89. package/example/metro.config.js +0 -40
  90. package/example/package.json +0 -22
  91. package/example/react-native.config.js +0 -10
  92. package/example/src/App.tsx +0 -31
  93. package/ios/Mosquitodb-Bridging-Header.h +0 -2
  94. package/ios/Mosquitodb.m +0 -22
  95. package/ios/Mosquitodb.xcodeproj/project.pbxproj +0 -283
  96. package/ios/Mosquitodb.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -4
  97. package/react-native-mosquitodb.podspec +0 -35
@@ -1,283 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 5E555C0D2413F4C50049A1A2 /* Mosquitodb.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* Mosquitodb.m */; };
11
- F4FF95D7245B92E800C19C63 /* Mosquitodb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4FF95D6245B92E800C19C63 /* Mosquitodb.swift */; };
12
- /* End PBXBuildFile section */
13
-
14
- /* Begin PBXCopyFilesBuildPhase section */
15
- 58B511D91A9E6C8500147676 /* CopyFiles */ = {
16
- isa = PBXCopyFilesBuildPhase;
17
- buildActionMask = 2147483647;
18
- dstPath = "include/$(PRODUCT_NAME)";
19
- dstSubfolderSpec = 16;
20
- files = (
21
- );
22
- runOnlyForDeploymentPostprocessing = 0;
23
- };
24
- /* End PBXCopyFilesBuildPhase section */
25
-
26
- /* Begin PBXFileReference section */
27
- 134814201AA4EA6300B7C361 /* libMosquitodb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libMosquitodb.a; sourceTree = BUILT_PRODUCTS_DIR; };
28
- B3E7B5891CC2AC0600A0062D /* Mosquitodb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Mosquitodb.m; sourceTree = "<group>"; };
29
- F4FF95D5245B92E700C19C63 /* Mosquitodb-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Mosquitodb-Bridging-Header.h"; sourceTree = "<group>"; };
30
- F4FF95D6245B92E800C19C63 /* Mosquitodb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Mosquitodb.swift; sourceTree = "<group>"; };
31
- /* End PBXFileReference section */
32
-
33
- /* Begin PBXFrameworksBuildPhase section */
34
- 58B511D81A9E6C8500147676 /* Frameworks */ = {
35
- isa = PBXFrameworksBuildPhase;
36
- buildActionMask = 2147483647;
37
- files = (
38
- );
39
- runOnlyForDeploymentPostprocessing = 0;
40
- };
41
- /* End PBXFrameworksBuildPhase section */
42
-
43
- /* Begin PBXGroup section */
44
- 134814211AA4EA7D00B7C361 /* Products */ = {
45
- isa = PBXGroup;
46
- children = (
47
- 134814201AA4EA6300B7C361 /* libMosquitodb.a */,
48
- );
49
- name = Products;
50
- sourceTree = "<group>";
51
- };
52
- 58B511D21A9E6C8500147676 = {
53
- isa = PBXGroup;
54
- children = (
55
- F4FF95D6245B92E800C19C63 /* Mosquitodb.swift */,
56
- B3E7B5891CC2AC0600A0062D /* Mosquitodb.m */,
57
- F4FF95D5245B92E700C19C63 /* Mosquitodb-Bridging-Header.h */,
58
- 134814211AA4EA7D00B7C361 /* Products */,
59
- );
60
- sourceTree = "<group>";
61
- };
62
- /* End PBXGroup section */
63
-
64
- /* Begin PBXNativeTarget section */
65
- 58B511DA1A9E6C8500147676 /* Mosquitodb */ = {
66
- isa = PBXNativeTarget;
67
- buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "Mosquitodb" */;
68
- buildPhases = (
69
- 58B511D71A9E6C8500147676 /* Sources */,
70
- 58B511D81A9E6C8500147676 /* Frameworks */,
71
- 58B511D91A9E6C8500147676 /* CopyFiles */,
72
- );
73
- buildRules = (
74
- );
75
- dependencies = (
76
- );
77
- name = Mosquitodb;
78
- productName = RCTDataManager;
79
- productReference = 134814201AA4EA6300B7C361 /* libMosquitodb.a */;
80
- productType = "com.apple.product-type.library.static";
81
- };
82
- /* End PBXNativeTarget section */
83
-
84
- /* Begin PBXProject section */
85
- 58B511D31A9E6C8500147676 /* Project object */ = {
86
- isa = PBXProject;
87
- attributes = {
88
- LastUpgradeCheck = 0920;
89
- ORGANIZATIONNAME = Facebook;
90
- TargetAttributes = {
91
- 58B511DA1A9E6C8500147676 = {
92
- CreatedOnToolsVersion = 6.1.1;
93
- };
94
- };
95
- };
96
- buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "Mosquitodb" */;
97
- compatibilityVersion = "Xcode 3.2";
98
- developmentRegion = English;
99
- hasScannedForEncodings = 0;
100
- knownRegions = (
101
- English,
102
- en,
103
- );
104
- mainGroup = 58B511D21A9E6C8500147676;
105
- productRefGroup = 58B511D21A9E6C8500147676;
106
- projectDirPath = "";
107
- projectRoot = "";
108
- targets = (
109
- 58B511DA1A9E6C8500147676 /* Mosquitodb */,
110
- );
111
- };
112
- /* End PBXProject section */
113
-
114
- /* Begin PBXSourcesBuildPhase section */
115
- 58B511D71A9E6C8500147676 /* Sources */ = {
116
- isa = PBXSourcesBuildPhase;
117
- buildActionMask = 2147483647;
118
- files = (
119
- F4FF95D7245B92E800C19C63 /* Mosquitodb.swift in Sources */,
120
- B3E7B58A1CC2AC0600A0062D /* Mosquitodb.m in Sources */,
121
- );
122
- runOnlyForDeploymentPostprocessing = 0;
123
- };
124
- /* End PBXSourcesBuildPhase section */
125
-
126
- /* Begin XCBuildConfiguration section */
127
- 58B511ED1A9E6C8500147676 /* Debug */ = {
128
- isa = XCBuildConfiguration;
129
- buildSettings = {
130
- ALWAYS_SEARCH_USER_PATHS = NO;
131
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
132
- CLANG_CXX_LIBRARY = "libc++";
133
- CLANG_ENABLE_MODULES = YES;
134
- CLANG_ENABLE_OBJC_ARC = YES;
135
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
136
- CLANG_WARN_BOOL_CONVERSION = YES;
137
- CLANG_WARN_COMMA = YES;
138
- CLANG_WARN_CONSTANT_CONVERSION = YES;
139
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
140
- CLANG_WARN_EMPTY_BODY = YES;
141
- CLANG_WARN_ENUM_CONVERSION = YES;
142
- CLANG_WARN_INFINITE_RECURSION = YES;
143
- CLANG_WARN_INT_CONVERSION = YES;
144
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
145
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
146
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
147
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
148
- CLANG_WARN_STRICT_PROTOTYPES = YES;
149
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
150
- CLANG_WARN_UNREACHABLE_CODE = YES;
151
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
152
- COPY_PHASE_STRIP = NO;
153
- ENABLE_STRICT_OBJC_MSGSEND = YES;
154
- ENABLE_TESTABILITY = YES;
155
- "EXCLUDED_ARCHS[sdk=*]" = arm64;
156
- GCC_C_LANGUAGE_STANDARD = gnu99;
157
- GCC_DYNAMIC_NO_PIC = NO;
158
- GCC_NO_COMMON_BLOCKS = YES;
159
- GCC_OPTIMIZATION_LEVEL = 0;
160
- GCC_PREPROCESSOR_DEFINITIONS = (
161
- "DEBUG=1",
162
- "$(inherited)",
163
- );
164
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
165
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
166
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
167
- GCC_WARN_UNDECLARED_SELECTOR = YES;
168
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
169
- GCC_WARN_UNUSED_FUNCTION = YES;
170
- GCC_WARN_UNUSED_VARIABLE = YES;
171
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
172
- MTL_ENABLE_DEBUG_INFO = YES;
173
- ONLY_ACTIVE_ARCH = YES;
174
- SDKROOT = iphoneos;
175
- };
176
- name = Debug;
177
- };
178
- 58B511EE1A9E6C8500147676 /* Release */ = {
179
- isa = XCBuildConfiguration;
180
- buildSettings = {
181
- ALWAYS_SEARCH_USER_PATHS = NO;
182
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
183
- CLANG_CXX_LIBRARY = "libc++";
184
- CLANG_ENABLE_MODULES = YES;
185
- CLANG_ENABLE_OBJC_ARC = YES;
186
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
187
- CLANG_WARN_BOOL_CONVERSION = YES;
188
- CLANG_WARN_COMMA = YES;
189
- CLANG_WARN_CONSTANT_CONVERSION = YES;
190
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
191
- CLANG_WARN_EMPTY_BODY = YES;
192
- CLANG_WARN_ENUM_CONVERSION = YES;
193
- CLANG_WARN_INFINITE_RECURSION = YES;
194
- CLANG_WARN_INT_CONVERSION = YES;
195
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
196
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
197
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
198
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
199
- CLANG_WARN_STRICT_PROTOTYPES = YES;
200
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
201
- CLANG_WARN_UNREACHABLE_CODE = YES;
202
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
203
- COPY_PHASE_STRIP = YES;
204
- ENABLE_NS_ASSERTIONS = NO;
205
- ENABLE_STRICT_OBJC_MSGSEND = YES;
206
- "EXCLUDED_ARCHS[sdk=*]" = arm64;
207
- GCC_C_LANGUAGE_STANDARD = gnu99;
208
- GCC_NO_COMMON_BLOCKS = YES;
209
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
210
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
211
- GCC_WARN_UNDECLARED_SELECTOR = YES;
212
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
213
- GCC_WARN_UNUSED_FUNCTION = YES;
214
- GCC_WARN_UNUSED_VARIABLE = YES;
215
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
216
- MTL_ENABLE_DEBUG_INFO = NO;
217
- SDKROOT = iphoneos;
218
- VALIDATE_PRODUCT = YES;
219
- };
220
- name = Release;
221
- };
222
- 58B511F01A9E6C8500147676 /* Debug */ = {
223
- isa = XCBuildConfiguration;
224
- buildSettings = {
225
- HEADER_SEARCH_PATHS = (
226
- "$(inherited)",
227
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
228
- "$(SRCROOT)/../../../React/**",
229
- "$(SRCROOT)/../../react-native/React/**",
230
- );
231
- LIBRARY_SEARCH_PATHS = "$(inherited)";
232
- OTHER_LDFLAGS = "-ObjC";
233
- PRODUCT_NAME = Mosquitodb;
234
- SKIP_INSTALL = YES;
235
- SWIFT_OBJC_BRIDGING_HEADER = "Mosquitodb-Bridging-Header.h";
236
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
237
- SWIFT_VERSION = 5.0;
238
- };
239
- name = Debug;
240
- };
241
- 58B511F11A9E6C8500147676 /* Release */ = {
242
- isa = XCBuildConfiguration;
243
- buildSettings = {
244
- HEADER_SEARCH_PATHS = (
245
- "$(inherited)",
246
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
247
- "$(SRCROOT)/../../../React/**",
248
- "$(SRCROOT)/../../react-native/React/**",
249
- );
250
- LIBRARY_SEARCH_PATHS = "$(inherited)";
251
- OTHER_LDFLAGS = "-ObjC";
252
- PRODUCT_NAME = Mosquitodb;
253
- SKIP_INSTALL = YES;
254
- SWIFT_OBJC_BRIDGING_HEADER = "Mosquitodb-Bridging-Header.h";
255
- SWIFT_VERSION = 5.0;
256
- };
257
- name = Release;
258
- };
259
- /* End XCBuildConfiguration section */
260
-
261
- /* Begin XCConfigurationList section */
262
- 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "Mosquitodb" */ = {
263
- isa = XCConfigurationList;
264
- buildConfigurations = (
265
- 58B511ED1A9E6C8500147676 /* Debug */,
266
- 58B511EE1A9E6C8500147676 /* Release */,
267
- );
268
- defaultConfigurationIsVisible = 0;
269
- defaultConfigurationName = Release;
270
- };
271
- 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "Mosquitodb" */ = {
272
- isa = XCConfigurationList;
273
- buildConfigurations = (
274
- 58B511F01A9E6C8500147676 /* Debug */,
275
- 58B511F11A9E6C8500147676 /* Release */,
276
- );
277
- defaultConfigurationIsVisible = 0;
278
- defaultConfigurationName = Release;
279
- };
280
- /* End XCConfigurationList section */
281
- };
282
- rootObject = 58B511D31A9E6C8500147676 /* Project object */;
283
- }
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Workspace
3
- version = "1.0">
4
- </Workspace>
@@ -1,35 +0,0 @@
1
- require "json"
2
-
3
- package = JSON.parse(File.read(File.join(__dir__, "package.json")))
4
- folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
5
-
6
- Pod::Spec.new do |s|
7
- s.name = "react-native-mosquitodb"
8
- s.version = package["version"]
9
- s.summary = package["description"]
10
- s.homepage = package["homepage"]
11
- s.license = package["license"]
12
- s.authors = package["author"]
13
-
14
- s.platforms = { :ios => "11.0" }
15
- s.source = { :git => "https://github.com/deflexable/react-native-mosquitodb.git", :tag => "#{s.version}" }
16
-
17
- s.source_files = "ios/**/*.{h,m,mm,swift}"
18
-
19
- s.dependency "React-Core"
20
-
21
- # Don't install the dependencies when we run `pod install` in the old architecture.
22
- if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
23
- s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
24
- s.pod_target_xcconfig = {
25
- "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
26
- "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
27
- "CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
28
- }
29
- s.dependency "React-Codegen"
30
- s.dependency "RCT-Folly"
31
- s.dependency "RCTRequired"
32
- s.dependency "RCTTypeSafety"
33
- s.dependency "ReactCommon/turbomodule/core"
34
- end
35
- end